metaforce/Runtime/Weapon/CPlasmaProjectile.hpp

25 lines
776 B
C++
Raw Normal View History

#ifndef __URDE_CPLASMAPROJECTILE_HPP__
#define __URDE_CPLASMAPROJECTILE_HPP__
#include "Weapon/CBeamProjectile.hpp"
#include "Weapon/CBeamInfo.hpp"
#include "World/CDamageInfo.hpp"
namespace urde
{
class CPlasmaProjectile : public CBeamProjectile
{
public:
2017-11-13 06:19:18 +00:00
CPlasmaProjectile(const TToken<CWeaponDescription>& wDesc, std::string_view name,
2017-09-05 03:00:19 +00:00
EWeaponType wType, const CBeamInfo& bInfo, const zeus::CTransform& xf,
EMaterialTypes matType, const CDamageInfo& dInfo, TUniqueId uid, TAreaId aid,
TUniqueId owner, u32 w1, bool b1, EProjectileAttrib attribs);
2017-01-15 03:07:01 +00:00
void Accept(IVisitor& visitor);
2017-08-13 05:26:14 +00:00
void UpdateFx(const zeus::CTransform&, float, CStateManager&) {}
};
}
#endif // __URDE_CPLASMAPROJECTILE_HPP__