lwjgl/src/java/org/lwjgl/test/opengl/multithread/DrawableSupplier.java

10 lines
203 B
Java

package org.lwjgl.test.opengl.multithread;
import org.lwjgl.LWJGLException;
import org.lwjgl.opengl.Drawable;
@FunctionalInterface
interface DrawableSupplier {
Drawable get() throws LWJGLException;
}