You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
472 B
C++
23 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
|