4jcraft/targets/minecraft/client/gui/ScreenSizeCalculator.h
2026-04-01 13:27:58 -05:00

16 lines
335 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); // 4J added forceScale parameter
int getWidth();
int getHeight();
};