summaryrefslogtreecommitdiffstats
path: root/source/Protocol/Protocol142.h
blob: 8b2205e44e3cb6f61f847137c6be3c1b06361b8a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38

// Protocol142.h

// Interfaces to the cProtocol142 class representing the release 1.4.2 protocol (#47)





#pragma once

#include "Protocol132.h"





class cProtocol142 :
	public cProtocol132
{
	typedef cProtocol132 super;
public:

	cProtocol142(cClientHandle * a_Client);
	virtual ~cProtocol142();

	// Sending commands (alphabetically sorted):
	virtual void SendPickupSpawn        (const cPickup & a_Pickup) override;
	virtual void SendSoundParticleEffect(int a_EffectID, int a_SrcX, int a_SrcY, int a_SrcZ, int a_Data) override;
	virtual void SendTimeUpdate         (Int64 a_WorldTime) override;

	// Specific packet parsers:
	virtual int ParseLogin              (void) override;
} ;