You've already forked MP1R-Rando-CodeEdits
mirror of
https://github.com/CraftyBoss/MP1R-Rando-CodeEdits.git
synced 2026-04-01 08:50:26 -07:00
16 lines
335 B
C++
16 lines
335 B
C++
#pragma once
|
|
|
|
#include "rstl/auto_ptr.h"
|
|
#include <rstl/rc_ptr.hpp>
|
|
|
|
class CUniverseInfo;
|
|
class CGameState;
|
|
|
|
class CGameStateManager {
|
|
public:
|
|
CGameStateManager(rstl::ncrc_ptr<CUniverseInfo> const&);
|
|
~CGameStateManager();
|
|
void AssignNewGameState(rstl::auto_ptr<CGameState> &);
|
|
|
|
rstl::auto_ptr<CGameState> mGameState;
|
|
}; |