Remove final from window width/height

This commit is contained in:
2025-08-14 23:04:31 +01:00
parent dcd822d165
commit e63a205e06

View File

@@ -13,7 +13,7 @@ import org.lwjgl.opengl.*;
import org.lwjgl.system.*;
public class Window {
private final int width, height;
private int width, height;
private final String title;
private long glfwWindow;