mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 06:39:49 +00:00
31 lines
481 B
C++
31 lines
481 B
C++
|
#ifndef GAME_MWMECHANICS_PTR_H
|
||
|
#define GAME_MWMECHANICS_PTR_H
|
||
|
|
||
|
namespace ESMS
|
||
|
{
|
||
|
class ESMStore;
|
||
|
}
|
||
|
|
||
|
namespace MWGui
|
||
|
{
|
||
|
class WindowManager;
|
||
|
}
|
||
|
|
||
|
namespace MWMechanics
|
||
|
{
|
||
|
class MechanicsManager
|
||
|
{
|
||
|
const ESMS::ESMStore& mStore;
|
||
|
MWGui::WindowManager& mWindowManager;
|
||
|
|
||
|
public:
|
||
|
|
||
|
MechanicsManager (const ESMS::ESMStore& store, MWGui::WindowManager& windowManager);
|
||
|
|
||
|
void configureGUI();
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|
||
|
|