mirror of
https://github.com/HowestDAE/dae16-VerhulstBram.git
synced 2025-12-16 03:51:47 +01:00
21 lines
458 B
C
21 lines
458 B
C
#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"
|