metaforce/Runtime/CModel.hpp

27 lines
318 B
C++
Raw Normal View History

2016-02-13 09:02:47 +00:00
#ifndef __PSHAG_CMODEL_HPP__
#define __PSHAG_CMODEL_HPP__
2016-02-13 00:57:09 +00:00
#include "RetroTypes.hpp"
#include "CColor.hpp"
2016-02-13 09:02:47 +00:00
namespace pshag
2016-02-13 00:57:09 +00:00
{
struct CModelFlags
{
u8 f1;
u8 f2;
u16 f3;
Zeus::CColor color;
};
class CModel
{
public:
void Draw(const CModelFlags& flags) const;
};
}
2016-02-13 09:02:47 +00:00
#endif // __PSHAG_CMODEL_HPP__