Tiberian Technologies Scripts Reference Revision: 9000
Loading...
Searching...
No Matches
cNetEvent.h
1/* Renegade Scripts.dll
2 Copyright 2013 Tiberian Technologies
3
4 This file is part of the Renegade scripts.dll
5 The Renegade scripts.dll is free software; you can redistribute it and/or modify it under
6 the terms of the GNU General Public License as published by the Free
7 Software Foundation; either version 2, or (at your option) any later
8 version. See the file COPYING for more details.
9 In 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.
10 Only the source code to the module(s) containing the licenced code has to be released.
11*/
12#ifndef TT_INCLUDE__CNETEVENT_H
13#define TT_INCLUDE__CNETEVENT_H
14
15
16
17#include "engine_common.h"
18#include "engine_string.h"
19#include "NetworkObjectClass.h"
20
21class cNetEvent :
22 public NetworkObjectClass
23{
24
25public:
26
27 virtual ~cNetEvent();
28 virtual unsigned int Get_Network_Class_ID() const = 0;
29 virtual void Import_Creation (BitStreamClass& oStream);
30 virtual void Export_Creation (BitStreamClass& oStream);
31 virtual void Delete ();
32 virtual void Act () = 0;
33
34 void Init();
35 SCRIPTS_API void Set_Object_Dirty_Bit_For_Revision(uint revision,DIRTY_BIT dirty_bit, bool onoff);
36
37}; // 06B4
38
39
40
41#endif