blob: 07e1bba0e5a47113b994ce00272c664e35f3736f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Dme version of a hitbox set
//
//===========================================================================//
#ifndef DMEHITBOXSET_H
#define DMEHITBOXSET_H
#ifdef _WIN32
#pragma once
#endif
#include "datamodel/dmelement.h"
#include "datamodel/dmattributevar.h"
#include "mdlobjects/dmehitbox.h"
//-----------------------------------------------------------------------------
// A class representing an attachment point
//-----------------------------------------------------------------------------
class CDmeHitboxSet : public CDmElement
{
DEFINE_ELEMENT( CDmeHitboxSet, CDmElement );
public:
CDmaElementArray< CDmeHitbox > m_Hitboxes;
private:
};
#endif // DMEHITBOXSET_H
|