Reworked file inclusion (using relative path)

This commit is contained in:
OM 2023-06-17 01:24:20 +02:00
parent 2ac8f3e39d
commit c287638f99
67 changed files with 147 additions and 146 deletions

View file

@ -22,19 +22,18 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
// compiler.cpp : Parse, then compile to op-codes.
#include "glb_local.h"
#include "scriptcompiler.h"
#include "scriptvm.h"
#include "level.h"
#include "parm.h"
#include "game.h"
#include "scriptmaster.h"
#include "scriptthread.h"
#include "../fgame/level.h"
#include "../fgame/parm.h"
#include "../fgame/game.h"
#include "../fgame/scriptmaster.h"
#include "../fgame/scriptthread.h"
#include "scriptclass.h"
#include "scriptexception.h"
#include "parsetree.h"
#include "yyParser.h"
#include "yyLexer.h"
#include "../parser/parsetree.h"
#include "../parser/yyParser.h"
#include "../parser/yyLexer.h"
ScriptCompiler Compiler;
int ScriptCompiler::current_label;