mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-02-04 03:40:14 +00:00
23 lines
372 B
C++
23 lines
372 B
C++
#ifndef GAME_STATE_STATEMANAGER_H
|
|
#define GAME_STATE_STATEMANAGER_H
|
|
|
|
#include "../mwbase/statemanager.hpp"
|
|
|
|
namespace MWState
|
|
{
|
|
class StateManager : public MWBase::StateManager
|
|
{
|
|
bool mQuitRequest;
|
|
|
|
public:
|
|
|
|
StateManager();
|
|
|
|
virtual void requestQuit();
|
|
|
|
virtual bool hasQuitRequest() const;
|
|
};
|
|
}
|
|
|
|
#endif
|