20 lines
383 B
C++
20 lines
383 B
C++
#ifndef DESKTOPLAUNCHER_H
|
|
#define DESKTOPLAUNCHER_H
|
|
|
|
namespace Game
|
|
{
|
|
|
|
const int SCREEN_WIDTH = 800;
|
|
const int SCREEN_HEIGHT = 600;
|
|
|
|
//Diagonal DPI of the display used while starting
|
|
extern float DDPI;
|
|
//horizontal DPI of the display used while starting
|
|
extern float HDPI;
|
|
//vertical DPI of the display used while starting
|
|
extern float VDPI;
|
|
|
|
void exit();
|
|
|
|
} // namespace Game
|
|
#endif |