mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-13 21:11:21 +00:00
21 lines
362 B
C++
21 lines
362 B
C++
#include "CGuiLight.hpp"
|
|
#include "CGuiAnimController.hpp"
|
|
#include "CGuiLogicalEventTrigger.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
|
|
CGuiLight::CGuiLight(const CGuiWidgetParms& parms, const CLight& light)
|
|
: CGuiWidget(parms)
|
|
{
|
|
}
|
|
|
|
CGuiLight* CGuiLight::Create(CGuiFrame* frame, CInputStream& in, bool flag)
|
|
{
|
|
CGuiWidgetParms parms = ReadWidgetHeader(frame, in, flag);
|
|
|
|
|
|
}
|
|
|
|
}
|