75cc675bf2
Although some new blocks are still not recognized and behave badly, the protocol itself is working. git-svn-id: http://mc-server.googlecode.com/svn/trunk@1273 0a769ca7-a7f5-676a-18bf-c427514a06d6
37 lines
520 B
C++
37 lines
520 B
C++
|
|
// Protocol15x.h
|
|
|
|
/*
|
|
Declares the 1.5.x protocol classes:
|
|
- cProtocol150
|
|
- release 1.5 protocol (#60)
|
|
(others may be added later in the future for the 1.5 release series)
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#include "Protocol14x.h"
|
|
|
|
|
|
|
|
|
|
|
|
class cProtocol150 :
|
|
public cProtocol146
|
|
{
|
|
typedef cProtocol146 super;
|
|
|
|
public:
|
|
cProtocol150(cClientHandle * a_Client);
|
|
|
|
virtual void SendWindowOpen(char a_WindowID, char a_WindowType, const AString & a_WindowTitle, char a_NumSlots) override;
|
|
} ;
|
|
|
|
|
|
|
|
|