diff options
| author | octorock <79596758+octorock@users.noreply.github.com> | 2023-12-30 18:26:19 +0100 |
|---|---|---|
| committer | octorock <79596758+octorock@users.noreply.github.com> | 2023-12-30 18:30:00 +0100 |
| commit | 3b87c0416294e830ad256226f315c6b416160493 (patch) | |
| tree | 80494ea2ce83de07d27094354a931d143fd5d76c /src/script.c | |
| parent | 33473d1d5bc818d47526f6a95c470e682b1b1530 (diff) | |
Invert NENT_DEPRECATED define
To define ENT_DEPRECATED in files that still need the old entity structs.
Diffstat (limited to 'src/script.c')
| -rw-r--r-- | src/script.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/script.c b/src/script.c index 278ad227..2f50621e 100644 --- a/src/script.c +++ b/src/script.c @@ -1,13 +1,14 @@ -#include "script.h" -#include "main.h" -#include "screen.h" +#define ENT_DEPRECATED #include "area.h" -#include "game.h" -#include "object.h" -#include "npc.h" -#include "kinstone.h" #include "functions.h" +#include "game.h" #include "item.h" +#include "kinstone.h" +#include "main.h" +#include "npc.h" +#include "object.h" +#include "screen.h" +#include "script.h" #include "ui.h" void InitScriptExecutionContext(ScriptExecutionContext* context, Script* script); |
