1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-27 14:57:44 +00:00

Merge pull request #736 from Skyliegirl33/ThreePointOh

Fix undeclared types
This commit is contained in:
Adam 2021-11-30 09:12:21 +11:00 committed by GitHub
commit 30f0c2912c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View file

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

View file

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