forked from teamnwah/openmw-tes3coop
28 lines
730 B
C++
28 lines
730 B
C++
//
|
|
// Created by koncord on 16.04.17.
|
|
//
|
|
|
|
#ifndef OPENMW_WORLDPROCESSSOR_HPP
|
|
#define OPENMW_WORLDPROCESSSOR_HPP
|
|
|
|
#include <components/openmw-mp/Log.hpp>
|
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
|
#include <components/openmw-mp/Packets/World/WorldPacket.hpp>
|
|
#include "../WorldEvent.hpp"
|
|
#include "../LocalPlayer.hpp"
|
|
#include "../DedicatedPlayer.hpp"
|
|
#include "BaseClientPacketProcessor.hpp"
|
|
|
|
namespace mwmp
|
|
{
|
|
class WorldProcessor : public BasePacketProcessor<WorldProcessor>, public BaseClientPacketProcessor
|
|
{
|
|
public:
|
|
virtual void Do(WorldPacket &packet, WorldEvent &event) = 0;
|
|
|
|
static bool Process(RakNet::Packet &packet, WorldEvent &event);
|
|
};
|
|
}
|
|
|
|
|
|
#endif //OPENMW_WORLDPROCESSSOR_HPP
|