mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-14 00:21:32 +00:00
4a87003408
* Vulkan backend updated. * zlib replaced with miniz. * FileReader is now 64 bit capable. * jpeg replaced with stb-image. * CMake project warnings fixed.
34 lines
787 B
C++
34 lines
787 B
C++
#include <stddef.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <float.h>
|
|
#include <math.h>
|
|
#include <limits.h>
|
|
#include <stdarg.h>
|
|
#include <errno.h>
|
|
#include <ctype.h>
|
|
#include <stdint.h>
|
|
#include <miniz.h>
|
|
#include <new>
|
|
#include <type_traits>
|
|
#include <algorithm>
|
|
#include <forward_list>
|
|
#include <sys/stat.h>
|
|
#include <sys/types.h>
|
|
#include <cassert>
|
|
#ifdef _MSC_VER
|
|
#include <direct.h>
|
|
#include <io.h>
|
|
#endif // _MSC_VER
|
|
#include <limits>
|
|
#include <memory>
|
|
#include <tuple>
|
|
#include <vector>
|
|
#include <utility>
|
|
#include <functional>
|
|
|
|
// These two headers get included nearly everywhere so it doesn't matter if changing them forces a few more recompiles.
|
|
// The overall savings from PCHing them are more significant.
|
|
#include "tarray.h"
|
|
#include "zstring.h"
|