From 05273f521b0ec3436a652b84f30a0af18c0e1e16 Mon Sep 17 00:00:00 2001 From: Rushi <44952533+Skyliegirl33@users.noreply.github.com> Date: Mon, 29 Nov 2021 18:54:16 +0100 Subject: [PATCH] Fix undeclared types --- deps/datReader/zlib.h | 1 + src/world/Action/ActionLut.h | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/deps/datReader/zlib.h b/deps/datReader/zlib.h index 97c368f2..6d81153e 100644 --- a/deps/datReader/zlib.h +++ b/deps/datReader/zlib.h @@ -1,6 +1,7 @@ #ifndef XIV_UTILS_ZLIB_H #define XIV_UTILS_ZLIB_H +#include #include #include diff --git a/src/world/Action/ActionLut.h b/src/world/Action/ActionLut.h index a7e37d51..46d5bdf5 100644 --- a/src/world/Action/ActionLut.h +++ b/src/world/Action/ActionLut.h @@ -1,5 +1,6 @@ #pragma once +#include #include namespace Sapphire::World::Action @@ -25,4 +26,4 @@ namespace Sapphire::World::Action static Lut m_actionLut; }; -} \ No newline at end of file +}