forked from teamnwah/openmw-tes3coop
17 lines
250 B
C++
17 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
|