Files
BlitzNext/gxruntime/std.h
T

28 lines
436 B
C++

#ifndef STD_H
#define STD_H
#include "../#ThirdParty/fmodapi375win/api/inc/fmod.h"
#include "../config/config.h"
#include "../stdutil/stdutil.h"
#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>
#include "GraphicsRuntime.h"
using namespace std;
#endif