2016-12-22 19:57:21 +00:00
|
|
|
#include "CPlasmaProjectile.hpp"
|
2017-01-15 03:07:01 +00:00
|
|
|
#include "TCastTo.hpp"
|
2016-12-22 19:57:21 +00:00
|
|
|
|
|
|
|
namespace urde
|
|
|
|
{
|
|
|
|
|
2017-11-13 06:19:18 +00:00
|
|
|
CPlasmaProjectile::CPlasmaProjectile(const TToken<CWeaponDescription>& wDesc, std::string_view name,
|
2016-12-22 19:57:21 +00:00
|
|
|
EWeaponType wType, const CBeamInfo& bInfo, const zeus::CTransform& xf,
|
2017-09-05 03:00:19 +00:00
|
|
|
EMaterialTypes matType, const CDamageInfo& dInfo, TUniqueId uid, TAreaId aid,
|
|
|
|
TUniqueId owner, u32 w1, bool b1, EProjectileAttrib attribs)
|
|
|
|
: CBeamProjectile(wDesc, name, wType, xf, bInfo.x18_, bInfo.x1c_, bInfo.x38_, matType,
|
|
|
|
dInfo, uid, aid, owner, attribs, b1)
|
2016-12-22 19:57:21 +00:00
|
|
|
{
|
|
|
|
}
|
2017-01-15 03:07:01 +00:00
|
|
|
|
|
|
|
void CPlasmaProjectile::Accept(IVisitor& visitor)
|
|
|
|
{
|
|
|
|
visitor.Visit(this);
|
|
|
|
}
|
|
|
|
|
2018-12-02 02:32:26 +00:00
|
|
|
void CPlasmaProjectile::Fire(const zeus::CTransform&, CStateManager&, bool)
|
|
|
|
{
|
|
|
|
SetActive(true);
|
|
|
|
}
|
|
|
|
|
2016-12-22 19:57:21 +00:00
|
|
|
}
|