io.github.mwttg.pixelartillery2d.cleanup.CleanUp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pixel-artillery-2d Show documentation
Show all versions of pixel-artillery-2d Show documentation
A library for 2D OpenGL and OpenAL support based on LWJGL 3
The newest version!
package io.github.mwttg.pixelartillery2d.cleanup;
import io.github.mwttg.pixelartillery2d.graphic.OpenGlCleanUp;
import io.github.mwttg.pixelartillery2d.sound.OpenAlCleanUp;
/** A class with a method to clean up all the OpenGL and OpenAL stuff */
public final class CleanUp {
private CleanUp() {}
/** Clean up everything. */
public static void purge() {
OpenGlCleanUp.purge();
OpenAlCleanUp.purge();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy