mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-13 21:11:21 +00:00
15 lines
341 B
C++
15 lines
341 B
C++
#include "CScriptGenerator.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
|
|
CScriptGenerator::CScriptGenerator(TUniqueId uid, const std::string& name, const CEntityInfo& info,
|
|
u32, bool, const zeus::CVector3f&, bool, bool active, float, float)
|
|
: CEntity(uid, info, active, name)
|
|
{
|
|
}
|
|
|
|
void CScriptGenerator::Accept(IVisitor&) {}
|
|
|
|
}
|