Tiberian Technologies Scripts Reference Revision: 9000
Loading...
Searching...
No Matches
WidgetUserClass.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__WIDGETUSERCLASS_H
13#define TT_INCLUDE__WIDGETUSERCLASS_H
14
15
16class WidgetRenderOpClass;
17class WidgetUserClass
18{
19public:
20 WidgetUserClass() {}
21 ~WidgetUserClass() {}
22#ifdef PARAM_EDITING_ON
23 virtual void Add_Debug_Point(const Vector3 & p,const Vector3 & color);
24 virtual void Add_Debug_Vector(const Vector3 & p,const Vector3 & v,const Vector3 & color);
25 virtual void Add_Debug_AABox(const AABoxClass & box,const Vector3 & color,float opacity = 0.25f);
26 virtual void Add_Debug_OBBox(const OBBoxClass & box,const Vector3 & color,float opacity = 0.25f);
27 virtual void Add_Debug_Axes(const Matrix3D & transform,const Vector3 & color);
28 WidgetRenderOpClass * WidgetRenderOpList;
29#endif
30};
31
32#endif