Files
BlitzNext/Runtime/gfx/std.hpp
T
Michael Fabian 'Xaymar' Dirks a16218e1d5 runtime: CMake-ify gx
2019-01-18 17:03:37 +01:00

25 lines
343 B
C++

#ifndef STD_H
#define STD_H
#include "stdutil.hpp"
#pragma warning(disable : 4786)
#define DIRECTSOUND_VERSION 0x700
#include <fstream>
#include <iostream>
#include <list>
#include <map>
#include <set>
#include <string>
#include <vector>
#include <math.h>
#include <windows.h>
#include "GraphicsRuntime.hpp"
using namespace std;
#endif