12 lines
160 B
C++
12 lines
160 B
C++
#ifndef DESKTOPLAUNCHER_H
|
|
#define DESKTOPLAUNCHER_H
|
|
|
|
namespace Game {
|
|
|
|
#define WINDOW_WIDTH = 800;
|
|
#define WINDOW_HEIGHT = 600;
|
|
|
|
void exit(int code);
|
|
|
|
}
|
|
#endif |