Rogue: Savage Rats, a retro-themed dungeon crawler
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rogue-savage-rats/src/mightypork/gamecore/resources/textures/WrapMode.java

23 lines
304 B

package mightypork.gamecore.resources.textures;
import org.lwjgl.opengl.GL11;
10 years ago
/**
* Texture wrap mode
*
* @author Ondřej Hruška (MightyPork)
10 years ago
*/
public enum WrapMode
{
CLAMP(GL11.GL_CLAMP), REPEAT(GL11.GL_REPEAT);
public final int num;
10 years ago
private WrapMode(int gl) {
this.num = gl;
}
}