From aa9c8efd033dd78e75e57e3a4f1f1f7ee0c83b1c Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Sun, 3 Apr 2022 23:44:53 -0700 Subject: [PATCH] add some includes needed on linux --- src/LevelTable.hh | 2 ++ src/Lobby.hh | 5 +++++ src/Map.hh | 1 + 3 files changed, 8 insertions(+) diff --git a/src/LevelTable.hh b/src/LevelTable.hh index 6f4f8015..ab45d136 100644 --- a/src/LevelTable.hh +++ b/src/LevelTable.hh @@ -2,6 +2,8 @@ #include +#include + #include "Player.hh" // information on a single level for a single class diff --git a/src/Lobby.hh b/src/Lobby.hh index eddb06a4..290b7a1a 100644 --- a/src/Lobby.hh +++ b/src/Lobby.hh @@ -3,11 +3,16 @@ #include #include +#include +#include +#include +#include #include "Client.hh" #include "Player.hh" #include "Map.hh" #include "RareItemSet.hh" +#include "Text.hh" struct Lobby { enum Flag { diff --git a/src/Map.hh b/src/Map.hh index 7ffc0a0c..c4d99d91 100644 --- a/src/Map.hh +++ b/src/Map.hh @@ -3,6 +3,7 @@ #include #include +#include