mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 05:19:55 +00:00
22 lines
472 B
C++
22 lines
472 B
C++
#ifndef OPENMW_WORLDCONTROLLER_HPP
|
|
#define OPENMW_WORLDCONTROLLER_HPP
|
|
|
|
#include "../mwworld/cellstore.hpp"
|
|
|
|
namespace mwmp
|
|
{
|
|
class WorldController
|
|
{
|
|
public:
|
|
|
|
WorldController();
|
|
~WorldController();
|
|
|
|
void openContainer(const MWWorld::Ptr& container, bool loot);
|
|
void closeContainer(const MWWorld::Ptr& container);
|
|
|
|
virtual MWWorld::CellStore *getCell(const ESM::Cell& cell);
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_WORLDCONTROLLER_HPP
|