mirror of
https://gitea.sffempire.ru/Kolyah35/minecraft-pe-0.6.1.git
synced 2026-03-20 15:03:32 +00:00
the whole game
This commit is contained in:
17
src/AppPlatform_win32.cpp
Executable file
17
src/AppPlatform_win32.cpp
Executable file
@@ -0,0 +1,17 @@
|
||||
#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; }
|
||||
bool AppPlatform_win32::hasBuyButtonWhenInvalidLicense() { return true; }
|
||||
Reference in New Issue
Block a user