mirror of https://github.com/AxioDL/metaforce.git
12 lines
413 B
C++
12 lines
413 B
C++
#include "Runtime/World/CEffect.hpp"
|
|
|
|
#include "Runtime/World/CActorParameters.hpp"
|
|
|
|
namespace urde {
|
|
|
|
CEffect::CEffect(TUniqueId uid, const CEntityInfo& info, bool active, std::string_view name, const zeus::CTransform& xf)
|
|
: CActor(uid, active, name, info, xf, CModelData::CModelDataNull(), CMaterialList(EMaterialTypes::NoStepLogic),
|
|
CActorParameters::None(), kInvalidUniqueId) {}
|
|
|
|
} // namespace urde
|