31 lines
474 B
C++
31 lines
474 B
C++
|
|
#ifndef STD_H
|
|
#define STD_H
|
|
|
|
#include "../config/config.h"
|
|
#include "../stdutil/stdutil.h"
|
|
|
|
#pragma warning( disable:4786 )
|
|
|
|
#define DIRECTSOUND_VERSION 0x700
|
|
#define DIRECTINPUT_VERSION 0x700
|
|
|
|
#include <set>
|
|
#include <map>
|
|
#include <list>
|
|
#include <string>
|
|
#include <vector>
|
|
#include <fstream>
|
|
#include <iostream>
|
|
|
|
#include <math.h>
|
|
#include <windows.h>
|
|
#include <ddraw.h>
|
|
#include <dinput.h>
|
|
#include <d3d.h>
|
|
|
|
#include "../../fmod375/fmod.h"
|
|
|
|
using namespace std;
|
|
|
|
#endif |