change DelayedPacket name
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
namespace td {
|
||||
namespace protocol {
|
||||
|
||||
class KeepAlivePacket : public TimedPacket {
|
||||
class KeepAlivePacket : public Packet{
|
||||
private:
|
||||
std::uint64_t m_AliveID;
|
||||
public:
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
namespace td {
|
||||
namespace protocol {
|
||||
|
||||
class RemoveTowerPacket : public TimedPacket {
|
||||
class RemoveTowerPacket : public DelayedPacket {
|
||||
private:
|
||||
game::TowerID m_TowerID;
|
||||
public:
|
||||
|
||||
@@ -25,7 +25,7 @@ public:
|
||||
game::Direction GetMobDirection() const { return m_MobDirection; }
|
||||
};
|
||||
|
||||
class UpdateMobStatesPacket : public TimedPacket {
|
||||
class UpdateMobStatesPacket : public DelayedPacket {
|
||||
private:
|
||||
std::vector<MobState> m_MobStates;
|
||||
public:
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
namespace td {
|
||||
namespace protocol {
|
||||
|
||||
class UpgradeTowerPacket : public TimedPacket {
|
||||
class UpgradeTowerPacket : public DelayedPacket {
|
||||
private:
|
||||
game::TowerID m_TowerID;
|
||||
game::TowerLevel m_TowerLevel;
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
namespace td {
|
||||
namespace protocol {
|
||||
|
||||
class WorldAddTowerPacket : public TimedPacket {
|
||||
class WorldAddTowerPacket : public DelayedPacket {
|
||||
private:
|
||||
game::TowerID m_TowerID;
|
||||
std::int32_t m_TowerX, m_TowerY;
|
||||
|
||||
Reference in New Issue
Block a user