diff options
Diffstat (limited to 'source/packets/cPacket_Explosion.h')
-rw-r--r-- | source/packets/cPacket_Explosion.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/source/packets/cPacket_Explosion.h b/source/packets/cPacket_Explosion.h index c37783115..5121c9175 100644 --- a/source/packets/cPacket_Explosion.h +++ b/source/packets/cPacket_Explosion.h @@ -1,8 +1,12 @@ + #pragma once #include "cPacket.h" + + + class cPacket_Explosion : public cPacket { public: @@ -18,7 +22,7 @@ public: ~cPacket_Explosion(); virtual cPacket* Clone() const { return new cPacket_Explosion(*this); } - bool Send(cSocket & a_Socket); + virtual void Serialize(AString & a_Data) const override; double m_PosX; // The entity ID of the thunderbolt double m_PosY; // Always true. Might have a meaning in the future... @@ -30,3 +34,7 @@ public: char* m_Records; }; + + + + |