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

19 lines
338 B
C++

#pragma once
/**
* \file CommandDispatcher.h
* \brief File containing the td::protocol::CommandDispatcher class
*/
#include <td/protocol/Dispatcher.h>
namespace td {
namespace protocol {
class CommandHandler;
using CommandDispatcher = Dispatcher<CommandType, CommandHandler, Command>;
} // namespace protocol
} // namespace td