Loading...
Searching...
No Matches
27#include "../qcommon/str.h"
37 void CreateException(
const char *data);
40 ScriptException(
str text);
41 ScriptException(
const char *format, ...);
42 ScriptException(
char *text);
44 static int next_abort;
45 static int next_bIsForAnim;
48void Error(
const char *format, ...);
50#define ScriptDeprecated(function) throw ScriptException(function ": DEPRECATED. DON'T USE IT ANYMORE")
51#define ScriptDeprecatedAltMethod(alternative_name) gi.DPrintf("WARNING: %s: is deprecated and has been superseded by the " alternative_name " method\n", __FUNCTION__)
52#define ScriptDeprecatedAltVariable(alternative_name) gi.DPrintf("WARNING: %s: is deprecated and has been superseded by the " alternative_name " variable\n", __FUNCTION__)
53#define ScriptError throw ScriptException