lwjgl2-arm64/src/java/org/lwjgl/opengl/GLU.java
2002-08-09 18:50:58 +00:00

26 lines
329 B
Java

/**
* (C) 2002 Shaven Puppy Ltd
*
* GLU.java Created on Aug 9, 2002 by foo
*/
package org.lwjgl.opengl;
/**
* GL Utilities library.
*
* @author foo
*/
public class GLU implements GLUConstants {
/** Handle to GL */
private final GL gl;
/**
* Constructor for GLU.
*/
public GLU(GL gl) {
this.gl = gl;
}
}