added new mwstate subsystem
parent
eddd6bf48d
commit
79b7fa258b
@ -0,0 +1,25 @@
|
||||
#ifndef GAME_MWSTATE_STATEMANAGER_H
|
||||
#define GAME_MWSTATE_STATEMANAGER_H
|
||||
|
||||
namespace MWBase
|
||||
{
|
||||
/// \brief Interface for game state manager (implemented in MWState)
|
||||
class StateManager
|
||||
{
|
||||
private:
|
||||
|
||||
StateManager (const StateManager&);
|
||||
///< not implemented
|
||||
|
||||
StateManager& operator= (const StateManager&);
|
||||
///< not implemented
|
||||
|
||||
public:
|
||||
|
||||
StateManager() {}
|
||||
|
||||
virtual ~StateManager() {}
|
||||
};
|
||||
}
|
||||
|
||||
#endif
|
@ -0,0 +1,7 @@
|
||||
|
||||
#include "statemanagerimp.hpp"
|
||||
|
||||
MWState::StateManager::StateManager()
|
||||
{
|
||||
|
||||
}
|
@ -0,0 +1,17 @@
|
||||
#ifndef GAME_STATE_STATEMANAGER_H
|
||||
#define GAME_STATE_STATEMANAGER_H
|
||||
|
||||
#include "../mwbase/statemanager.hpp"
|
||||
|
||||
namespace MWState
|
||||
{
|
||||
class StateManager : public MWBase::StateManager
|
||||
{
|
||||
public:
|
||||
|
||||
StateManager();
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
#endif
|
Loading…
Reference in New Issue