Files
LegacyMultiplayerProject/Minecraft.Client/ScreenSizeCalculator.h
DrPerkyLegit b3e825ef9c Initial commit
2026-06-23 01:07:42 -04:00

15 lines
303 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();
};