mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 08:19:56 +00:00
25 lines
393 B
C++
25 lines
393 B
C++
|
#ifndef GAME_WORLD_INVIRONMENT_H
|
||
|
#define GAME_WORLD_INVIRONMENT_H
|
||
|
|
||
|
namespace MWSound
|
||
|
{
|
||
|
class SoundManager;
|
||
|
}
|
||
|
|
||
|
namespace MWWorld
|
||
|
{
|
||
|
class World;
|
||
|
|
||
|
///< Collection of script-accessable sub-systems
|
||
|
struct Environment
|
||
|
{
|
||
|
Environment() : mWorld (0), mSoundManager (0) {}
|
||
|
|
||
|
World *mWorld;
|
||
|
MWSound::SoundManager *mSoundManager;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|
||
|
|