2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-08-06 08:15:39 +00:00
metaforce/Runtime/Common/CGameState.hpp
2015-08-17 19:54:43 -10:00

27 lines
353 B
C++

#ifndef __RETRO_CGAMESTATE_HPP__
#define __RETRO_CGAMESTATE_HPP__
#include <memory>
#include "CPlayerState.hpp"
#include "CGameOptions.hpp"
namespace Retro
{
namespace Common
{
class CGameState
{
TOneStatic<CPlayerState> m_playerState;
CGameOptions m_gameOpts;
public:
CGameState()
{
}
};
}
}
#endif // __RETRO_CGAMESTATE_HPP__