1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 02:49:55 +00:00
openmw-tes3mp/components/openmw-mp/Base/WorldEvent.hpp

33 lines
495 B
C++
Raw Normal View History

#ifndef OPENMW_WORLDEVENT_HPP
#define OPENMW_WORLDEVENT_HPP
2016-10-22 17:15:32 +00:00
#include <components/esm/loadcell.hpp>
2016-10-20 19:15:47 +00:00
#include <components/esm/cellref.hpp>
#include <RakNetTypes.h>
namespace mwmp
{
class WorldEvent
{
public:
WorldEvent(RakNet::RakNetGUID guid) : guid(guid)
{
}
WorldEvent()
{
}
RakNet::RakNetGUID guid;
2016-10-22 15:44:13 +00:00
ESM::Cell cell;
ESM::CellRef cellRef;
2016-10-24 10:20:04 +00:00
int lockLevel;
};
}
#endif //OPENMW_WORLDEVENT_HPP