metaforce/Runtime/World/CEffect.cpp

11 lines
384 B
C++
Raw Normal View History

2017-04-13 19:28:31 +00:00
#include "CEffect.hpp"
#include "CActorParameters.hpp"
2018-12-08 05:30:43 +00:00
namespace urde {
2017-04-13 19:28:31 +00:00
2017-11-13 06:19:18 +00:00
CEffect::CEffect(TUniqueId uid, const CEntityInfo& info, bool active, std::string_view name, const zeus::CTransform& xf)
2017-12-19 03:05:50 +00:00
: CActor(uid, active, name, info, xf, CModelData::CModelDataNull(), CMaterialList(EMaterialTypes::NoStepLogic),
2018-12-08 05:30:43 +00:00
CActorParameters::None(), kInvalidUniqueId) {}
2017-04-13 19:28:31 +00:00
2018-12-08 05:30:43 +00:00
} // namespace urde