Counter Strike : Global Offensive Source Code
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
//====== Copyright � 1996-2004, Valve Corporation, All rights reserved. =====//
//
// Dme version of a hitbox set
//
//===========================================================================//
#ifndef DMEHITBOXSET_H
#define DMEHITBOXSET_H
#ifdef _WIN32
#pragma once
#endif
#include "datamodel/dmattributevar.h"
#include "mdlobjects/dmemdllist.h"
//-----------------------------------------------------------------------------
// Forward declarations
//-----------------------------------------------------------------------------
class CDmeHitbox;
//-----------------------------------------------------------------------------
// A class representing an attachment point
//-----------------------------------------------------------------------------
class CDmeHitboxSet : public CDmeMdlList { DEFINE_ELEMENT( CDmeHitboxSet, CDmeMdlList );
public: virtual CDmAttribute *GetListAttr() { return m_HitboxList.GetAttribute(); }
CDmaElementArray< CDmeHitbox > m_HitboxList;
};
#endif // DMEHITBOXSET_H
|