Henrique Gemignani Passos Lima 43b1448045 Add almost matched CGameCubeDoll
Former-commit-id: 25b4d122076bfcd26f5c162b649282daccaccf61
2022-11-14 04:18:45 +02:00

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