metaforce/Runtime/Graphics/CModel.hpp

27 lines
322 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"
2016-03-04 23:04:53 +00:00
#include "zeus/CColor.hpp"
2016-02-13 00:57:09 +00:00
2016-03-04 23:04:53 +00:00
namespace urde
2016-02-13 00:57:09 +00:00
{
struct CModelFlags
{
u8 f1;
u8 f2;
u16 f3;
2016-03-04 23:04:53 +00:00
zeus::CColor color;
2016-02-13 00:57:09 +00:00
};
class CModel
{
public:
void Draw(const CModelFlags& flags) const;
};
}
2016-02-13 09:02:47 +00:00
#endif // __PSHAG_CMODEL_HPP__