37 lines
822 B
C++
37 lines
822 B
C++
// stdafx.h : include file for standard system include files,
|
|
// or project specific include files that are used frequently, but
|
|
// are changed infrequently
|
|
//
|
|
#pragma once
|
|
|
|
#ifndef _DEBUG
|
|
#define _SECURE_SCL 0
|
|
#endif
|
|
|
|
#include "targetver.h"
|
|
|
|
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
|
// Windows Header Files:
|
|
#include <windows.h>
|
|
#include <Shlwapi.h>
|
|
|
|
// C RunTime Header Files
|
|
#include <stdlib.h>
|
|
#include <malloc.h>
|
|
#include <memory.h>
|
|
#include <tchar.h>
|
|
#define _USE_MATH_DEFINES
|
|
#include <cmath>
|
|
#include <BaseTsd.h>
|
|
|
|
#include <iostream>
|
|
#include <vector>
|
|
#include <map>
|
|
#include <string>
|
|
#include <d3d10.h>
|
|
#include <d3dx10.h>
|
|
#include <DXGI.h>
|
|
|
|
#include "../Aiwaz/Common/BaseTypes.h"
|
|
#include "../Aiwaz/Common/ConsoleColor.h"
|
|
#include "../Aiwaz/Common/StringHelper.h" |