prime/include/MetroidPrime/Player/CPlayerState.hpp

15 lines
175 B
C++
Raw Normal View History

#ifndef _CPLAYERSTATE_HPP
#define _CPLAYERSTATE_HPP
#include "types.h"
class CPlayerState {
public:
void SetIsFusionEnabled(bool v);
private:
u8 pad[0x198];
};
#endif