mirror of
https://github.com/HowestDAE/dae16-VerhulstBram.git
synced 2025-12-17 03:41:48 +01:00
Update README.md
Add GameProject to Solution
This commit is contained in:
20
Game/pch.h
Normal file
20
Game/pch.h
Normal file
@@ -0,0 +1,20 @@
|
||||
#pragma once
|
||||
//ML Detection Extension
|
||||
#ifdef _DEBUG
|
||||
#define _CRTDBG_MAP_ALLOC
|
||||
#include <cstdlib>
|
||||
#include <crtdbg.h>
|
||||
#define DEBUG_NEW new(_NORMAL_BLOCK, __FILE__, __LINE__)
|
||||
#define new DEBUG_NEW
|
||||
#endif
|
||||
// SDL and OpenGL Includes
|
||||
#pragma warning(disable : 26812)
|
||||
#pragma warning(disable : 4820)
|
||||
#include <SDL.h>
|
||||
#include <SDL_opengl.h>
|
||||
#include <SDL_ttf.h>
|
||||
#include <SDL_mixer.h>
|
||||
#include <SDL_image.h>
|
||||
|
||||
#pragma warning(default : 26812)
|
||||
#include "structs.h"
|
||||
Reference in New Issue
Block a user