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