2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-15 06:06:10 +00:00

More particle implementation

This commit is contained in:
Jack Andersen
2016-02-12 14:57:09 -10:00
parent 43a818d1a3
commit 0f1f0e1211
10 changed files with 641 additions and 4 deletions

26
Runtime/CModel.hpp Normal file
View File

@@ -0,0 +1,26 @@
#ifndef __RETRO_CMODEL_HPP__
#define __RETRO_CMODEL_HPP__
#include "RetroTypes.hpp"
#include "CColor.hpp"
namespace Retro
{
struct CModelFlags
{
u8 f1;
u8 f2;
u16 f3;
Zeus::CColor color;
};
class CModel
{
public:
void Draw(const CModelFlags& flags) const;
};
}
#endif // __RETRO_CMODEL_HPP__