mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-08-26 20:55:44 +00:00
15 lines
288 B
C++
15 lines
288 B
C++
#include "CScriptTimer.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
|
|
CScriptTimer::CScriptTimer(TUniqueId uid, const std::string& name, const CEntityInfo& info,
|
|
float, float, bool, bool, bool active)
|
|
: CEntity(uid, info, active, name)
|
|
{
|
|
}
|
|
|
|
void CScriptTimer::Accept(IVisitor&) {}
|
|
|
|
}
|