mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-05-15 10:31:20 +00:00
14 lines
197 B
C++
14 lines
197 B
C++
#ifndef _CMODEL
|
|
#define _CMODEL
|
|
|
|
class CModelFlags;
|
|
|
|
class CModel {
|
|
public:
|
|
void Touch(int) const;
|
|
void Draw(const CModelFlags&) const;
|
|
bool IsLoaded(int matIdx) const;
|
|
};
|
|
|
|
#endif // _CMODEL
|