From: drjaska Date: Sun, 7 Mar 2021 03:46:38 +0000 (+0200) Subject: Fixed file include stuff which was needed due to alphabetical compiling X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=2d4c986550a5730d591955a8c0fb8e0a897bc3a0;p=xonotic%2Fxonotic-data.pk3dir.git Fixed file include stuff which was needed due to alphabetical compiling order. --- diff --git a/qcsrc/common/gamemodes/gamemode/mayhem/mayhem.qh b/qcsrc/common/gamemodes/gamemode/mayhem/mayhem.qh index 6f9dd4a2f..bf5568b84 100644 --- a/qcsrc/common/gamemodes/gamemode/mayhem/mayhem.qh +++ b/qcsrc/common/gamemodes/gamemode/mayhem/mayhem.qh @@ -1,5 +1,7 @@ #pragma once +#include +#include #include CLASS(mayhem, Gametype) diff --git a/qcsrc/common/gamemodes/gamemode/tmayhem/tmayhem.qh b/qcsrc/common/gamemodes/gamemode/tmayhem/tmayhem.qh index 01a808df7..290881c9c 100644 --- a/qcsrc/common/gamemodes/gamemode/tmayhem/tmayhem.qh +++ b/qcsrc/common/gamemodes/gamemode/tmayhem/tmayhem.qh @@ -1,6 +1,7 @@ #pragma once #include +#include #include CLASS(tmayhem, Gametype)