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:
26
Runtime/CModel.hpp
Normal file
26
Runtime/CModel.hpp
Normal 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__
|
||||
Reference in New Issue
Block a user