2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-02 02:53:29 +00:00
metaforce/Runtime/CGameState.hpp
2015-08-18 12:51:54 -10:00

24 lines
332 B
C++

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