SUNENGINE 0.0.2
A simple and bright C++ game engine.
 
Loading...
Searching...
No Matches
ProjectSettings.h
1//----------------------------------------------------------------------------
2// Copyright 2019, Ed Keenan, all rights reserved.
3//----------------------------------------------------------------------------
4
5#ifndef PROJECT_SETTINGS_H
6#define PROJECT_SETTINGS_H
7
8// -----------------------------------------------------------------------------
9// DO NOT MODIFY
10// -----------------------------------------------------------------------------
11// Warning levels turned on for Wall... that Should be supressed globally
12// Set here to avoid surpressing them in the settings
13// -----------------------------------------------------------------------------
14
15
16// --------------------------------------
17// General includes
18// --------------------------------------
19
20#include <assert.h>
21
22
23#endif
24
25// --- End of File ---------------