TombEngine/TR5Main/framework.h

22 lines
415 B
C
Raw Normal View History

#pragma once
#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
#include <memory>
#include <functional>
#include <vector>
#include <map>
#include <string>
#include <array>
#include <d3d11.h>
#include <SimpleMath.h>
#include <sol.hpp>
#include "memory/malloc.h"
#include "Game/debug/debug.h"
#include <algorithm>
2020-07-25 18:02:35 +02:00
using namespace DirectX;
using namespace DirectX::SimpleMath;
#pragma warning(disable: 4996)