2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-24 23:51:20 +00:00
metaforce/Runtime/World/CScriptRelay.cpp
Phillip Stephens 63985b6063 CPatterned arg type fix
Relay loader imps
CBeetle loader imp
Change CAiFuncMap's const char* to std::string
2016-05-17 20:57:43 -07:00

12 lines
198 B
C++

#include "CScriptRelay.hpp"
namespace urde
{
CScriptRelay::CScriptRelay(TUniqueId uid, const std::string& name, const CEntityInfo& info, bool active)
: CEntity(uid, info, active, name)
{
}
}