Phillip Stephens fd5f4fa193 Add CVirtualBone and CSkinRules
Former-commit-id: 7764f30c5ba2f8e232d989fa86a904348b418a85
2023-01-12 12:37:45 -08:00

18 lines
351 B
C++

#ifndef _CMODEL
#define _CMODEL
class CModelFlags;
class CModel {
static uint sTotalMemory;
public:
void Touch(int) const;
void Draw(const CModelFlags&) const;
bool IsLoaded(int matIdx) const;
static void AddToTotal(uint amt) { sTotalMemory += amt; }
static void RemoveFromTotal(uint amt) { sTotalMemory -= amt; }
};
#endif // _CMODEL