2016-12-10 02:35:20 +00:00
|
|
|
#include "CPowerBeam.hpp"
|
2017-08-22 03:20:22 +00:00
|
|
|
#include "GameGlobalObjects.hpp"
|
|
|
|
#include "CSimplePool.hpp"
|
2016-12-10 02:35:20 +00:00
|
|
|
|
|
|
|
namespace urde
|
|
|
|
{
|
2017-08-22 03:20:22 +00:00
|
|
|
|
|
|
|
CPowerBeam::CPowerBeam(CAssetId characterId, EWeaponType type, TUniqueId playerId,
|
|
|
|
EMaterialTypes playerMaterial, const zeus::CVector3f& scale)
|
|
|
|
: CGunWeapon(characterId, type, playerId, playerMaterial, scale)
|
2016-12-10 02:35:20 +00:00
|
|
|
{
|
2017-08-22 03:20:22 +00:00
|
|
|
x21c_shotSmoke = g_SimplePool->GetObj("ShotSmoke");
|
|
|
|
x228_power2nd1 = g_SimplePool->GetObj("Power2nd_1");
|
|
|
|
x244_24 = false;
|
|
|
|
x244_25 = false;
|
2016-12-10 02:35:20 +00:00
|
|
|
}
|
2017-08-22 03:20:22 +00:00
|
|
|
|
2016-12-10 02:35:20 +00:00
|
|
|
}
|