mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-25 06:35:30 +00:00
18 lines
250 B
C++
18 lines
250 B
C++
|
#ifndef GAME_STATE_STATEMANAGER_H
|
||
|
#define GAME_STATE_STATEMANAGER_H
|
||
|
|
||
|
#include "../mwbase/statemanager.hpp"
|
||
|
|
||
|
namespace MWState
|
||
|
{
|
||
|
class StateManager : public MWBase::StateManager
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
StateManager();
|
||
|
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|