mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-07-12 18:18:57 -07:00
17 lines
245 B
C++
17 lines
245 B
C++
#ifndef _CPLAYERGUN
|
|
#define _CPLAYERGUN
|
|
|
|
#include "MetroidPrime//TGameTypes.hpp"
|
|
|
|
class CPlayerGun {
|
|
public:
|
|
CPlayerGun(TUniqueId, int);
|
|
~CPlayerGun();
|
|
|
|
private:
|
|
char m_pad[0x814];
|
|
};
|
|
CHECK_SIZEOF(CPlayerGun, 0x814)
|
|
|
|
#endif // _CPLAYERGUN
|