Tiberian Technologies Scripts Reference Revision: 9000
Loading...
Searching...
No Matches
cAMpaScripts.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#pragma once
13class cAMpa_Warn_Zone_Team : public ScriptImpClass {
14 void Created(GameObject *obj);
15 void Entered(GameObject *obj,GameObject *enterer);
16};
17
18class cAMpa_Kill_Zone_Team : public ScriptImpClass {
19 void Created(GameObject *obj);
20 void Entered(GameObject *obj,GameObject *enterer);
21};
22
23class cAMpa_Teleport_Zone_Small : public ScriptImpClass {
24 void Created(GameObject *obj);
25 void Entered(GameObject *obj,GameObject *enterer);
26 int lastUsed;
27};
28
29class cAMpa_Teleport_Zone_Large : public ScriptImpClass {
30 void Created(GameObject *obj);
31 void Entered(GameObject *obj,GameObject *enterer);
32 int lastUsed;
33};