Root includes

This commit is contained in:
InfiniteCoder
2024-08-04 10:24:11 +03:00
parent eeb9ba77fb
commit d5dc68dd38
132 changed files with 164 additions and 164 deletions
+1 -1
View File
@@ -7,7 +7,7 @@
#include "../files/engine_paths.hpp"
#include "../files/files.hpp"
#include "../typedefs.hpp"
#include <typedefs.hpp>
#include "../util/stringutil.hpp"
namespace fs = std::filesystem;
+1 -1
View File
@@ -4,7 +4,7 @@
#include <string>
#include <vector>
#include "../typedefs.hpp"
#include <typedefs.hpp>
/* byteorder: little-endian */
class ByteBuilder {
+1 -1
View File
@@ -5,7 +5,7 @@
#include <string>
#include "../data/dynamic.hpp"
#include "../typedefs.hpp"
#include <typedefs.hpp>
inline int is_box(int c) {
switch (c) {
+1 -1
View File
@@ -3,7 +3,7 @@
#include <vector>
#include "../typedefs.hpp"
#include <typedefs.hpp>
namespace gzip {
const unsigned char MAGIC[] = "\x1F\x8B";
+1 -1
View File
@@ -4,7 +4,7 @@
#include <string>
#include "../data/dynamic.hpp"
#include "../typedefs.hpp"
#include <typedefs.hpp>
#include "binary_json.hpp"
namespace json {
+1 -1
View File
@@ -7,7 +7,7 @@
#include "../audio/audio.hpp"
#include "../debug/Logger.hpp"
#include "../typedefs.hpp"
#include <typedefs.hpp>
static debug::Logger logger("ogg");
+1 -1
View File
@@ -1,7 +1,7 @@
#ifndef CODERS_RLE_HPP_
#define CODERS_RLE_HPP_
#include "../typedefs.hpp"
#include <typedefs.hpp>
namespace rle {
size_t encode(const ubyte* src, size_t length, ubyte* dst);