X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fnet%2FPacket.hpp;fp=src%2Fnet%2FPacket.hpp;h=232d0be9900d880995c90e77339491ea1194319e;hb=cf5ce8220483bb062740eeaedde6474928fd5e0e;hp=4742a4525d679a44333c2d27b7eb88a306793cdc;hpb=d2eb51ad9759eeee743b04aee6f1ae69132fc706;p=blank.git diff --git a/src/net/Packet.hpp b/src/net/Packet.hpp index 4742a45..232d0be 100644 --- a/src/net/Packet.hpp +++ b/src/net/Packet.hpp @@ -10,6 +10,7 @@ namespace blank { class Entity; +class EntityState; struct Packet { @@ -85,7 +86,7 @@ struct Packet { void WritePlayer(const Entity &) noexcept; void ReadPlayerID(std::uint32_t &) const noexcept; - void ReadPlayer(Entity &) const noexcept; + void ReadPlayerState(EntityState &) const noexcept; void WriteWorldName(const std::string &) noexcept; void ReadWorldName(std::string &) const noexcept; }; @@ -100,7 +101,7 @@ struct Packet { static constexpr std::size_t MAX_LEN = 64; void WritePlayer(const Entity &) noexcept; - void ReadPlayer(Entity &) const noexcept; + void ReadPlayerState(EntityState &) const noexcept; }; struct SpawnEntity : public Payload { @@ -135,7 +136,7 @@ struct Packet { void WriteEntity(const Entity &, std::uint32_t) noexcept; void ReadEntityID(std::uint32_t &, std::uint32_t) const noexcept; - void ReadEntity(Entity &, std::uint32_t) const noexcept; + void ReadEntityState(EntityState &, std::uint32_t) const noexcept; };