2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-15 02:31:20 +00:00
metaforce/Runtime/MP1/World/CFlickerBat.cpp
2018-11-05 20:16:12 -10:00

14 lines
563 B
C++

#include "CFlickerBat.hpp"
namespace urde::MP1
{
CFlickerBat::CFlickerBat(TUniqueId uid, std::string_view name, CPatterned::EFlavorType flavor, const CEntityInfo& info,
const zeus::CTransform& xf, CModelData&& mData, const CPatternedInfo& pInfo,
EColliderType colType, bool b1, const CActorParameters& actParms, bool b2)
: CPatterned(ECharacter::FlickerBat, uid, name, flavor, info, xf, std::move(mData), pInfo, EMovementType::Flyer, colType,
EBodyType::Pitchable, actParms, EKnockBackVariant::Small)
{
}
}