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