![JAR search and dependency download from the Maven repository](/logo.png)
com.badlogic.gdx.backends.lwjgl3.Lwjgl3WindowAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gdx-backend-lwjgl3 Show documentation
Show all versions of gdx-backend-lwjgl3 Show documentation
Android/Desktop/iOS/HTML5 game development framework.
package com.badlogic.gdx.backends.lwjgl3;
/**
* Convenience implementation of {@link Lwjgl3WindowListener}. Derive from this class
* and only overwrite the methods you are interested in.
* @author badlogic
*
*/
public class Lwjgl3WindowAdapter implements Lwjgl3WindowListener {
@Override
public void created(Lwjgl3Window window) {
}
@Override
public void iconified(boolean isIconified) {
}
@Override
public void maximized(boolean isMaximized) {
}
@Override
public void focusLost() {
}
@Override
public void focusGained() {
}
@Override
public boolean closeRequested() {
return true;
}
@Override
public void filesDropped(String[] files) {
}
@Override
public void refreshRequested() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy