mirror of
https://github.com/xtjoeytx/GServer-v2.git
synced 2026-05-07 16:19:40 -04:00
75393a0a1a
Sorted includes. Converted dependencies to brackets. Use relative path for includes.
26 lines
552 B
C
26 lines
552 B
C
#ifndef SCRIPTBINDINGS_H
|
|
#define SCRIPTBINDINGS_H
|
|
|
|
#ifdef NDEBUG
|
|
#ifdef ENABLE_SCRIPTENV_DEBUG
|
|
#define _SCRIPTENV_DEBUG
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef _SCRIPTENV_DEBUG
|
|
#define SCRIPTENV_D(...) printf(__VA_ARGS__)
|
|
#else
|
|
#define SCRIPTENV_D(...) \
|
|
do { \
|
|
} \
|
|
while (0)
|
|
#endif
|
|
|
|
#include "scripting/interface/ScriptArguments.h"
|
|
#include "scripting/interface/ScriptEnv.h"
|
|
#include "scripting/interface/ScriptFunction.h"
|
|
#include "scripting/interface/ScriptObject.h"
|
|
#include "scripting/interface/ScriptUtils.h"
|
|
|
|
#endif
|