diff options
Diffstat (limited to 'source/Protocol.h')
-rw-r--r-- | source/Protocol.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source/Protocol.h b/source/Protocol.h index e01afa9cc..44ef2cafc 100644 --- a/source/Protocol.h +++ b/source/Protocol.h @@ -81,6 +81,9 @@ public: virtual void SendWholeInventory (const cWindow & a_Window) = 0;
virtual void SendWindowClose (char a_WindowID) = 0;
virtual void SendWindowOpen (char a_WindowID, char a_WindowType, const AString & a_WindowTitle, char a_NumSlots) = 0;
+
+ /// Returns the ServerID used for authentication through session.minecraft.net
+ virtual AString GetAuthServerID(void) = 0;
protected:
cClientHandle * m_Client;
|