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.
41 lines
1.0 KiB
41 lines
1.0 KiB
//====== Copyright © 1996-2004, Valve Corporation, All rights reserved. =====//
|
|
//
|
|
// Dme version of a hitbox set
|
|
//
|
|
//===========================================================================//
|
|
|
|
#ifndef DMEHITBOXSETLIST_H
|
|
#define DMEHITBOXSETLIST_H
|
|
|
|
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
|
|
#include "datamodel/dmattributevar.h"
|
|
#include "mdlobjects/dmemdllist.h"
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Forward declarations
|
|
//-----------------------------------------------------------------------------
|
|
class CDmeHitboxSet;
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// A class representing an attachment point
|
|
//-----------------------------------------------------------------------------
|
|
class CDmeHitboxSetList : public CDmeMdlList
|
|
{
|
|
DEFINE_ELEMENT( CDmeHitboxSetList, CDmeMdlList );
|
|
|
|
public:
|
|
virtual CDmAttribute *GetListAttr() { return m_HitboxSetList.GetAttribute(); }
|
|
|
|
CDmaElementArray< CDmeHitboxSet > m_HitboxSetList;
|
|
|
|
};
|
|
|
|
|
|
#endif // DMEHITBOXSETLIST_H
|