We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aaf094a commit dfb536aCopy full SHA for dfb536a
src/main/java/engine/application/BasicApplication.java
@@ -110,7 +110,7 @@ public void update() {
110
}
111
112
@Override
113
- public void render(Graphics g) {
+ public void render(Graphics g) {
114
if (activeScene != null) {
115
activeScene.render(g);
116
@@ -170,4 +170,8 @@ public Scene getActiveScene() {
170
public void setActiveScene(Scene activeScene) {
171
this.activeScene = activeScene;
172
173
+
174
+ public void setDisplayInfoText(boolean displayInfoText) {
175
+ this.displayInfoText = displayInfoText;
176
+ }
177
0 commit comments