Files
Tower-Defense2/include/td/protocol/packet/PacketDispatcher.h
2024-10-07 19:48:36 +02:00

19 lines
331 B
C++

#pragma once
/**
* \file PacketDispatcher.h
* \brief File containing the td::protocol::PacketDispatcher class
*/
#include <td/protocol/Dispatcher.h>
namespace td {
namespace protocol {
class PacketHandler;
using PacketDispatcher = Dispatcher<PacketType, PacketHandler, Packet>;
} // namespace protocol
} // namespace td