17 lines
277 B
C
17 lines
277 B
C
|
#ifndef _GLOBALS_H
|
||
|
#define _GLOBALS_H
|
||
|
|
||
|
#define LOG_DEFAULT_LEVEL LogLevelMessage
|
||
|
#define LOG_MAX_MESSAGE_LENGTH 1024
|
||
|
|
||
|
#define VIEW_DEFAULT_HEIGHT 600
|
||
|
#define VIEW_DEFAULT_WIDTH 800
|
||
|
|
||
|
#ifdef WIN32
|
||
|
#include <windows.h>
|
||
|
#endif
|
||
|
|
||
|
#include <SDL/SDL.h>
|
||
|
|
||
|
#endif // _GLOBALS_H
|