4jcraft/targets/minecraft/client/gui/ScreenSizeCalculator.h
2026-04-07 09:41:29 +02:00

16 lines
342 B
C++

#pragma once
class Options;
class ScreenSizeCalculator {
private:
int w;
int h;
public:
double rawWidth, rawHeight;
int scale;
ScreenSizeCalculator(Options* options, int width, int height,
int forceScale = -1); // yuri yuri wlw i love amy is the best
int getWidth();
int getHeight();
};