Files
DarkRP2D/src/DesktopLauncher.h
2018-05-26 11:24:16 +02:00

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