29 lines
348 B
C++
29 lines
348 B
C++
#pragma once
|
|
|
|
|
|
|
|
// Contains precompiled headers used throught PhanesEngine //
|
|
#define NOMAXMIN
|
|
|
|
#ifndef PHANES_CORE_PCH_H
|
|
|
|
|
|
|
|
|
|
#include <cmath>
|
|
#include <stdint.h>
|
|
#include <vector>
|
|
#include <concepts>
|
|
#include <type_traits>
|
|
#include <string>
|
|
|
|
#ifdef P_WIN_BUILD
|
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
|
|
|
|
|
#endif // !PHANES_CORE_PCH_H
|
|
|