2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 22:27:43 +00:00

Codebase refactor

This commit is contained in:
Jack Andersen
2015-08-18 12:51:54 -10:00
parent d17f2a5e78
commit 6809fcc4a4
94 changed files with 217 additions and 275 deletions

26
Runtime/CPlayerState.hpp Normal file
View 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__