diff options
Diffstat (limited to 'src/Protocol/Protocol17x.h')
-rw-r--r-- | src/Protocol/Protocol17x.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Protocol/Protocol17x.h b/src/Protocol/Protocol17x.h index 16a4e972e..a98910bc3 100644 --- a/src/Protocol/Protocol17x.h +++ b/src/Protocol/Protocol17x.h @@ -53,7 +53,7 @@ class cProtocol172 : public: - cProtocol172(cClientHandle * a_Client, const AString & a_ServerAddress, UInt16 a_ServerPort, UInt32 a_State); + cProtocol172(const AString a_LogID); /** Sending stuff to clients (alphabetically sorted): */ virtual void SendAttachEntity (const cEntity & a_Entity, const cEntity * a_Vehicle) override; @@ -139,6 +139,7 @@ public: virtual AString GetAuthServerID(void) override { return m_AuthServerID; } + protected: typedef std::vector<std::unique_ptr<cClientAction>> ActionList; @@ -247,7 +248,7 @@ class cProtocol176 : typedef cProtocol172 super; public: - cProtocol176(cClientHandle * a_Client, const AString & a_ServerAddress, UInt16 a_ServerPort, UInt32 a_State); + cProtocol176(const AString a_LogID); // cProtocol172 overrides: virtual void SendPlayerSpawn(const cPlayer & a_Player) override; |