Skip to content

Commit

Permalink
Javadocs
Browse files Browse the repository at this point in the history
  • Loading branch information
obigu committed Nov 28, 2023
1 parent fc1d6a7 commit fef61e2
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import java.io.PrintStream;
import java.nio.IntBuffer;

import com.badlogic.gdx.ApplicationListener;
import com.badlogic.gdx.LifecycleListener;
import org.lwjgl.BufferUtils;
import org.lwjgl.PointerBuffer;
Expand Down Expand Up @@ -191,14 +192,14 @@ public void setForegroundFPS (int fps) {
this.foregroundFPS = fps;
}

/** Sets whether to render and fire {@link LifecycleListener#pause()}/{@link LifecycleListener#resume()} events on when window
* is minimized/restored. **/
/** Sets whether to pause the application {@link ApplicationListener#pause()} and fire
* {@link LifecycleListener#pause()}/{@link LifecycleListener#resume()} events on when window is minimized/restored. **/
public void setPauseWhenMinimized (boolean pauseWhenMinimized) {
this.pauseWhenMinimized = pauseWhenMinimized;
}

/** Sets whether to render and fire {@link LifecycleListener#pause()}/{@link LifecycleListener#resume()} events on when window
* loses/gains focus. **/
/** Sets whether to pause the application {@link ApplicationListener#pause()} and fire
* {@link LifecycleListener#pause()}/{@link LifecycleListener#resume()} events on when window loses/gains focus. **/
public void setPauseWhenLostFocus (boolean pauseWhenLostFocus) {
this.pauseWhenLostFocus = pauseWhenLostFocus;
}
Expand Down

0 comments on commit fef61e2

Please sign in to comment.