mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 22:40:05 +00:00
20 lines
382 B
C++
20 lines
382 B
C++
#include <scwx/wsr88d/rpg/packet.hpp>
|
|
|
|
namespace scwx
|
|
{
|
|
namespace wsr88d
|
|
{
|
|
namespace rpg
|
|
{
|
|
|
|
static const std::string logPrefix_ = "scwx::wsr88d::rpg::packet";
|
|
|
|
Packet::Packet() = default;
|
|
Packet::~Packet() = default;
|
|
|
|
Packet::Packet(Packet&&) noexcept = default;
|
|
Packet& Packet::operator=(Packet&&) noexcept = default;
|
|
|
|
} // namespace rpg
|
|
} // namespace wsr88d
|
|
} // namespace scwx
|