mirror of https://github.com/AxioDL/metaforce.git
11 lines
384 B
C++
11 lines
384 B
C++
#include "CEffect.hpp"
|
|
#include "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
|