Fixed warning!

This commit is contained in:
Sebastian Cabrera 2020-03-19 00:07:34 -04:00
parent 62bc380d3d
commit f9fef39baa
2 changed files with 2 additions and 1 deletions

View file

@ -67,6 +67,7 @@ public class Window {
public Window(int width, int height, String title) {
this.width = width;
this.height = height;
this.title = title;
Window.title = title;
}
}