mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-08 22:27:43 +00:00
Codebase refactor
This commit is contained in:
26
Runtime/CPlayerState.hpp
Normal file
26
Runtime/CPlayerState.hpp
Normal file
@@ -0,0 +1,26 @@
|
||||
#ifndef __RETRO_CPLAYERSTATE_HPP__
|
||||
#define __RETRO_CPLAYERSTATE_HPP__
|
||||
|
||||
#include "RetroTemplates.hpp"
|
||||
#include "CStaticInterference.hpp"
|
||||
|
||||
namespace Retro
|
||||
{
|
||||
|
||||
class CPlayerState
|
||||
{
|
||||
CStaticInterference m_staticIntf;
|
||||
class CPowerUp
|
||||
{
|
||||
int m_a;
|
||||
int m_b;
|
||||
public:
|
||||
CPowerUp() : m_a(-1), m_b(-1) {}
|
||||
CPowerUp(int a, int b) : m_a(a), m_b(b) {}
|
||||
};
|
||||
CPowerUp m_powerups[29];
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // __RETRO_CPLAYERSTATE_HPP__
|
||||
Reference in New Issue
Block a user