From d5f74dc2453806e3888f811b6591f198d54c76e9 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Sun, 9 Jul 2023 20:12:09 +0200 Subject: [PATCH] Add constants for script paths Game script path and its compile list. --- r5dev/public/vscript/ivscript.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/r5dev/public/vscript/ivscript.h b/r5dev/public/vscript/ivscript.h index f81c772b..b513984d 100644 --- a/r5dev/public/vscript/ivscript.h +++ b/r5dev/public/vscript/ivscript.h @@ -5,6 +5,9 @@ #include "datamap.h" //--------------------------------------------------------- +// Location of the scripts, and its compile list +#define GAME_SCRIPT_PATH "scripts/vscripts/" +#define GAME_SCRIPT_COMPILELIST GAME_SCRIPT_PATH"scripts.rson" DECLARE_POINTER_HANDLE(HSCRIPT); #define INVALID_HSCRIPT ((HSCRIPT)-1)