mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-11-01 04:20:06 +00:00
Linked vector packet
This commit is contained in:
parent
cb86ab4b9b
commit
ab702e9927
6 changed files with 351 additions and 0 deletions
34
wxdata/include/scwx/wsr88d/rpg/packet.hpp
Normal file
34
wxdata/include/scwx/wsr88d/rpg/packet.hpp
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
#pragma once
|
||||
|
||||
#include <scwx/wsr88d/message.hpp>
|
||||
|
||||
#include <cstdint>
|
||||
#include <memory>
|
||||
|
||||
namespace scwx
|
||||
{
|
||||
namespace wsr88d
|
||||
{
|
||||
namespace rpg
|
||||
{
|
||||
|
||||
class Packet : public Message
|
||||
{
|
||||
protected:
|
||||
explicit Packet();
|
||||
|
||||
Packet(const Packet&) = delete;
|
||||
Packet& operator=(const Packet&) = delete;
|
||||
|
||||
Packet(Packet&&) noexcept;
|
||||
Packet& operator=(Packet&&) noexcept;
|
||||
|
||||
public:
|
||||
virtual ~Packet();
|
||||
|
||||
virtual uint16_t packet_code() const = 0;
|
||||
};
|
||||
|
||||
} // namespace rpg
|
||||
} // namespace wsr88d
|
||||
} // namespace scwx
|
||||
Loading…
Add table
Add a link
Reference in a new issue