2022-10-09 05:13:17 +00:00
|
|
|
#ifndef _CWAVEBEAM
|
|
|
|
#define _CWAVEBEAM
|
|
|
|
|
|
|
|
#include "types.h"
|
2022-10-06 10:38:13 +00:00
|
|
|
|
|
|
|
#include "MetroidPrime/Weapons/CGunWeapon.hpp"
|
|
|
|
|
|
|
|
class CWaveBeam : public CGunWeapon {
|
|
|
|
public:
|
|
|
|
CWaveBeam(CAssetId characterId, EWeaponType type, TUniqueId playerId,
|
2022-10-09 05:13:17 +00:00
|
|
|
EMaterialTypes playerMaterial, const CVector3f& scale);
|
2022-10-06 11:37:57 +00:00
|
|
|
~CWaveBeam();
|
2022-10-09 05:13:17 +00:00
|
|
|
|
2022-10-06 10:38:13 +00:00
|
|
|
private:
|
2022-10-09 05:37:23 +00:00
|
|
|
uchar x21c_pad[0x40];
|
2022-10-06 10:38:13 +00:00
|
|
|
};
|
|
|
|
CHECK_SIZEOF(CWaveBeam, 0x25c)
|
|
|
|
|
2022-10-09 05:13:17 +00:00
|
|
|
#endif // _CWAVEBEAM
|