mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 02:49:55 +00:00
40 lines
677 B
C++
40 lines
677 B
C++
#ifndef GAME_WORLD_INVIRONMENT_H
|
|
#define GAME_WORLD_INVIRONMENT_H
|
|
|
|
namespace MWSound
|
|
{
|
|
class SoundManager;
|
|
}
|
|
|
|
namespace MWScript
|
|
{
|
|
class GlobalScripts;
|
|
}
|
|
|
|
namespace MWGui
|
|
{
|
|
class GuiManager;
|
|
}
|
|
|
|
namespace MWWorld
|
|
{
|
|
class World;
|
|
|
|
///< Collection of script-accessable sub-systems
|
|
class Environment
|
|
{
|
|
public:
|
|
Environment()
|
|
: mWorld (0), mSoundManager (0), mGlobalScripts (0), mGuiManager (0), mFrameDuration (0)
|
|
{}
|
|
|
|
World *mWorld;
|
|
MWSound::SoundManager *mSoundManager;
|
|
MWScript::GlobalScripts *mGlobalScripts;
|
|
MWGui::GuiManager *mGuiManager;
|
|
float mFrameDuration;
|
|
};
|
|
}
|
|
|
|
#endif
|
|
|