2015-08-17 05:26:58 +00:00
|
|
|
#ifndef __RETRO_CPLAYERSTATE_HPP__
|
|
|
|
#define __RETRO_CPLAYERSTATE_HPP__
|
|
|
|
|
2015-08-17 20:33:58 +00:00
|
|
|
#include "RetroTemplates.hpp"
|
|
|
|
#include "CStaticInterference.hpp"
|
|
|
|
|
2015-08-17 22:05:00 +00:00
|
|
|
namespace Retro
|
|
|
|
{
|
|
|
|
namespace Common
|
|
|
|
{
|
|
|
|
|
|
|
|
class CPlayerState : public TOneStatic<CPlayerState>
|
2015-08-17 05:26:58 +00:00
|
|
|
{
|
2015-08-17 20:33:58 +00:00
|
|
|
CStaticInterference m_staticIntf;
|
|
|
|
class CPowerUp
|
|
|
|
{
|
|
|
|
int m_a;
|
|
|
|
int m_b;
|
|
|
|
public:
|
2015-08-17 22:05:00 +00:00
|
|
|
CPowerUp() : m_a(-1), m_b(-1) {}
|
2015-08-17 20:33:58 +00:00
|
|
|
CPowerUp(int a, int b) : m_a(a), m_b(b) {}
|
|
|
|
};
|
|
|
|
CPowerUp m_powerups[29];
|
2015-08-17 05:26:58 +00:00
|
|
|
};
|
|
|
|
|
2015-08-17 22:05:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-17 05:26:58 +00:00
|
|
|
#endif // __RETRO_CPLAYERSTATE_HPP__
|