diff --git a/include/protocol/packets/RemoveTowerPacket.h b/include/protocol/packets/RemoveTowerPacket.h index 2727813..319a936 100644 --- a/include/protocol/packets/RemoveTowerPacket.h +++ b/include/protocol/packets/RemoveTowerPacket.h @@ -6,7 +6,7 @@ namespace td { namespace protocol { -class RemoveTowerPacket : public Packet { +class RemoveTowerPacket : public TimedPacket { private: game::TowerID m_TowerID; public: diff --git a/include/protocol/packets/UpdateMobStatesPacket.h b/include/protocol/packets/UpdateMobStatesPacket.h index ba84e80..ffceaf2 100644 --- a/include/protocol/packets/UpdateMobStatesPacket.h +++ b/include/protocol/packets/UpdateMobStatesPacket.h @@ -25,7 +25,7 @@ public: game::Direction GetMobDirection() const { return m_MobDirection; } }; -class UpdateMobStatesPacket : public Packet { +class UpdateMobStatesPacket : public TimedPacket { private: std::vector m_MobStates; public: diff --git a/include/protocol/packets/UpgradeTowerPacket.h b/include/protocol/packets/UpgradeTowerPacket.h index 124c8c8..558385d 100644 --- a/include/protocol/packets/UpgradeTowerPacket.h +++ b/include/protocol/packets/UpgradeTowerPacket.h @@ -6,7 +6,7 @@ namespace td { namespace protocol { -class UpgradeTowerPacket : public Packet { +class UpgradeTowerPacket : public TimedPacket { private: game::TowerID m_TowerID; game::TowerLevel m_TowerLevel; diff --git a/include/protocol/packets/WorldAddTowerPacket.h b/include/protocol/packets/WorldAddTowerPacket.h index 0851451..7212227 100644 --- a/include/protocol/packets/WorldAddTowerPacket.h +++ b/include/protocol/packets/WorldAddTowerPacket.h @@ -6,7 +6,7 @@ namespace td { namespace protocol { -class WorldAddTowerPacket : public Packet { +class WorldAddTowerPacket : public TimedPacket { private: game::TowerID m_TowerID; std::int32_t m_TowerX, m_TowerY;