mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-01-05 17:13:36 +08:00
55 lines
781 B
C
55 lines
781 B
C
|
//====== Copyright <20> 1996-2005, Valve Corporation, All rights reserved. =======
|
|||
|
//
|
|||
|
// Purpose:
|
|||
|
//
|
|||
|
//=============================================================================
|
|||
|
|
|||
|
#ifndef BONELIST_H
|
|||
|
#define BONELIST_H
|
|||
|
#ifdef _WIN32
|
|||
|
#pragma once
|
|||
|
#endif
|
|||
|
|
|||
|
#include "studio.h"
|
|||
|
|
|||
|
class CBoneList
|
|||
|
{
|
|||
|
public:
|
|||
|
|
|||
|
CBoneList();
|
|||
|
|
|||
|
void Release();
|
|||
|
|
|||
|
static CBoneList *Alloc();
|
|||
|
|
|||
|
public:
|
|||
|
|
|||
|
int m_nBones;
|
|||
|
Vector m_vecPos[ MAXSTUDIOBONES ];
|
|||
|
Quaternion m_quatRot[ MAXSTUDIOBONES ];
|
|||
|
|
|||
|
private:
|
|||
|
bool m_bShouldDelete;
|
|||
|
};
|
|||
|
|
|||
|
class CFlexList
|
|||
|
{
|
|||
|
public:
|
|||
|
|
|||
|
CFlexList();
|
|||
|
|
|||
|
void Release();
|
|||
|
|
|||
|
static CFlexList *Alloc();
|
|||
|
|
|||
|
public:
|
|||
|
|
|||
|
int m_nNumFlexes;
|
|||
|
float m_flexWeights[ MAXSTUDIOFLEXCTRL ];
|
|||
|
|
|||
|
private:
|
|||
|
bool m_bShouldDelete;
|
|||
|
};
|
|||
|
|
|||
|
#endif // BONELIST_H
|