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.
25 lines
508 B
C++
25 lines
508 B
C++
8 years ago
|
#ifndef OPENMW_CELLCONTROLLER_HPP
|
||
|
#define OPENMW_CELLCONTROLLER_HPP
|
||
8 years ago
|
|
||
8 years ago
|
#include "../mwworld/cellstore.hpp"
|
||
|
|
||
8 years ago
|
namespace mwmp
|
||
|
{
|
||
8 years ago
|
class CellController
|
||
8 years ago
|
{
|
||
|
public:
|
||
|
|
||
8 years ago
|
CellController();
|
||
|
~CellController();
|
||
8 years ago
|
|
||
8 years ago
|
int getCellSize() const;
|
||
|
|
||
|
virtual MWWorld::CellStore *getCell(const ESM::Cell& cell);
|
||
|
|
||
8 years ago
|
void openContainer(const MWWorld::Ptr& container, bool loot);
|
||
|
void closeContainer(const MWWorld::Ptr& container);
|
||
8 years ago
|
};
|
||
|
}
|
||
|
|
||
8 years ago
|
#endif //OPENMW_CELLCONTROLLER_HPP
|