2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-15 07:11:20 +00:00
metaforce/Runtime/GuiSys/CGuiModel.hpp
2016-03-11 18:58:56 -10:00

24 lines
491 B
C++

#ifndef __URDE_CGUIMODEL_HPP__
#define __URDE_CGUIMODEL_HPP__
#include "CGuiWidget.hpp"
#include "CToken.hpp"
#include "Graphics/CModel.hpp"
namespace urde
{
class CGuiModel : public CGuiWidget
{
TLockedToken<CModel> xf8_model;
TResId x108_modelId;
u32 x10c_lightMode;
public:
CGuiModel(const CGuiWidgetParms& parms, TResId modelId, u32 lightMode, bool flag);
static CGuiModel* Create(CGuiFrame* frame, CInputStream& in, bool);
};
}
#endif // __URDE_CGUIMODEL_HPP__