Files
BlitzNext/gxruntime/std.hpp
T

25 lines
343 B
C++
Raw Normal View History

2014-01-31 08:23:00 +13:00
#ifndef STD_H
#define STD_H
2019-01-18 15:55:06 +01:00
#include "stdutil.hpp"
2014-01-31 08:23:00 +13:00
#pragma warning( disable:4786 )
#define DIRECTSOUND_VERSION 0x700
#include <set>
#include <map>
#include <list>
#include <string>
#include <vector>
#include <fstream>
#include <iostream>
#include <math.h>
#include <windows.h>
2019-01-18 15:55:06 +01:00
#include "GraphicsRuntime.hpp"
2014-01-31 08:23:00 +13:00
using namespace std;
#endif