Tiberian Technologies Scripts Reference Revision: 9000
Loading...
Searching...
No Matches
cPurchaseResponseEvent.h
1/* Renegade Scripts.dll
2Copyright 2013 Tiberian Technologies
3
4This file is part of the Renegade scripts.dll
5The Renegade scripts.dll is free software; you can redistribute it and/or modify it under
6the terms of the GNU General Public License as published by the Free
7Software Foundation; either version 2, or (at your option) any later
8version. See the file COPYING for more details.
9In addition, an exemption is given to allow Run Time Dynamic Linking of this code with any closed source module that does not contain code covered by this licence.
10Only the source code to the module(s) containing the licenced code has to be released.
11*/
12#ifndef TT_INCLUDE__CPURCHASERESPONSEEVENT_H
13#define TT_INCLUDE__CPURCHASERESPONSEEVENT_H
14
15#include "cNetEvent.h"
16
17
18class cPurchaseResponseEvent : public cNetEvent
19{
20
21private:
22
23 sint32 clientId; // 1716
24 sint32 reply; // 1720
25
26
27public:
28
29 cPurchaseResponseEvent();
30
31 virtual unsigned int Get_Network_Class_ID () const;
32 virtual void Import_Creation (BitStreamClass& oStream);
33 virtual void Export_Creation (BitStreamClass& oStream);
34 virtual void Act ();
35
36 void Init (sint32 reply, sint32 clientId);
37
38};
39
40
41#endif