16 lines
280 B
C++
16 lines
280 B
C++
#pragma once
|
|
|
|
/**
|
|
* \file PacketHandler.h
|
|
* \brief File containing the blitz::protocol::PacketHandler class
|
|
*/
|
|
|
|
#include "blitz/protocol/Packets.h"
|
|
|
|
namespace blitz {
|
|
namespace protocol {
|
|
|
|
using PacketHandler = sp::PacketHandler;
|
|
|
|
} // namespace protocol
|
|
} // namespace blitz
|