Files

12 lines
423 B
C++
Raw Permalink Normal View History

2019-12-22 15:04:07 -05:00
#include "Runtime/World/CEffect.hpp"
#include "Runtime/World/CActorParameters.hpp"
2017-04-13 09:28:31 -10:00
2021-04-10 01:42:06 -07:00
namespace metaforce {
2017-04-13 09:28:31 -10:00
2017-11-12 20:19:18 -10:00
CEffect::CEffect(TUniqueId uid, const CEntityInfo& info, bool active, std::string_view name, const zeus::CTransform& xf)
2017-12-18 17:05:50 -10:00
: CActor(uid, active, name, info, xf, CModelData::CModelDataNull(), CMaterialList(EMaterialTypes::NoStepLogic),
2018-12-07 19:30:43 -10:00
CActorParameters::None(), kInvalidUniqueId) {}
2017-04-13 09:28:31 -10:00
2021-04-10 01:42:06 -07:00
} // namespace metaforce