the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2class Options;
3
4class ScreenSizeCalculator
5{
6private:
7 int w;
8 int h;
9public:
10 double rawWidth, rawHeight;
11 int scale;
12 ScreenSizeCalculator(Options *options, int width, int height, int forceScale = -1); // 4J added forceScale parameter
13 int getWidth();
14 int getHeight();
15};