mirror of
https://gitea.sffempire.ru/Kolyah35/minecraft-pe-0.6.1.git
synced 2026-03-20 15:03:32 +00:00
17 lines
473 B
C++
Executable File
17 lines
473 B
C++
Executable File
#include "AppPlatform_win32.h"
|
|
#include "util/Mth.h"
|
|
|
|
int AppPlatform_win32::getScreenWidth() { return 854; }
|
|
int AppPlatform_win32::getScreenHeight() { return 480; }
|
|
|
|
float AppPlatform_win32::getPixelsPerMillimeter() {
|
|
// assuming 24" @ 1920x1200
|
|
const int w = 1920;
|
|
const int h = 1200;
|
|
const float pixels = Mth::sqrt(w*w + h*h);
|
|
const float mm = 24 * 25.4f;
|
|
return pixels / mm;
|
|
}
|
|
|
|
bool AppPlatform_win32::supportsTouchscreen() { return true; }
|