mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-22 04:53:51 +00:00
6f7771d97e
Simplify ContainsPacket and fix GetPacket
17 lines
389 B
C++
17 lines
389 B
C++
#ifndef OPENMW_WORLDPACKETCONTROLLER_HPP
|
|
#define OPENMW_WORLDPACKETCONTROLLER_HPP
|
|
|
|
|
|
#include "../Packets/World/WorldPacket.hpp"
|
|
#include "BasePacketController.hpp"
|
|
|
|
namespace mwmp
|
|
{
|
|
class WorldPacketController: public BasePacketController<WorldPacket>
|
|
{
|
|
public:
|
|
WorldPacketController(RakNet::RakPeerInterface *peer);
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_WORLDPACKETCONTROLLER_HPP
|