prime/include/Kyoto/Graphics/CModel.hpp

13 lines
162 B
C++
Raw Normal View History

2022-11-14 02:18:45 +00:00
#ifndef _CMODEL
#define _CMODEL
class CModelFlags;
class CModel {
public:
void Touch(int) const;
void Draw(const CModelFlags&) const;
};
#endif // _CMODEL