mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 12:27:43 +00:00
Humungous refactor
This commit is contained in:
26
Runtime/Graphics/CModel.hpp
Normal file
26
Runtime/Graphics/CModel.hpp
Normal file
@@ -0,0 +1,26 @@
|
||||
#ifndef __PSHAG_CMODEL_HPP__
|
||||
#define __PSHAG_CMODEL_HPP__
|
||||
|
||||
#include "RetroTypes.hpp"
|
||||
#include "zeus/CColor.hpp"
|
||||
|
||||
namespace urde
|
||||
{
|
||||
|
||||
struct CModelFlags
|
||||
{
|
||||
u8 f1;
|
||||
u8 f2;
|
||||
u16 f3;
|
||||
zeus::CColor color;
|
||||
};
|
||||
|
||||
class CModel
|
||||
{
|
||||
public:
|
||||
void Draw(const CModelFlags& flags) const;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // __PSHAG_CMODEL_HPP__
|
||||
Reference in New Issue
Block a user