1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-25 05:57:45 +00:00

Fix undeclared types

This commit is contained in:
Rushi 2021-11-29 18:54:16 +01:00
parent be2320aa98
commit 05273f521b
2 changed files with 3 additions and 1 deletions

View file

@ -1,6 +1,7 @@
#ifndef XIV_UTILS_ZLIB_H
#define XIV_UTILS_ZLIB_H
#include <cstddef>
#include <cstdint>
#include <vector>

View file

@ -1,5 +1,6 @@
#pragma once
#include <cstdint>
#include <unordered_map>
namespace Sapphire::World::Action
@ -25,4 +26,4 @@ namespace Sapphire::World::Action
static Lut m_actionLut;
};
}
}