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
|
|
|
|
2019-01-18 17:03:37 +01:00
|
|
|
#pragma warning(disable : 4786)
|
2014-01-31 08:23:00 +13:00
|
|
|
|
|
|
|
|
#define DIRECTSOUND_VERSION 0x700
|
|
|
|
|
|
2019-01-18 17:03:37 +01:00
|
|
|
#include <fstream>
|
|
|
|
|
#include <iostream>
|
2014-01-31 08:23:00 +13:00
|
|
|
#include <list>
|
2019-01-18 17:03:37 +01:00
|
|
|
#include <map>
|
|
|
|
|
#include <set>
|
2014-01-31 08:23:00 +13:00
|
|
|
#include <string>
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
|
#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
|