summaryrefslogtreecommitdiff
path: root/src/main/java/net/tylermurphy/Minecraft/Util/Constants.java
blob: d657e834bd9f0c7acd9ecae54e208f6e9454a82b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package net.tylermurphy.Minecraft.Util;

public class Constants {
	
	public static final String SHADER_LOCATION = "assets/shaders/";
	public static final String PNG_LOCATION = "assets/textures/";
	public static final String FNT_LOCATION = "assets/font/";
	public static final String OGG_LOCATION = "assets/sounds/";
	public static final String SAVES_LOCATION = "saves";
	
	public static final float NEAR_DISTANCE = 0.1f;
	public static final float FAR_DISTANCE = 1000;
	public static final float FOV = 70;

	public static final float RED = 0.78125f;
	public static final float GREEN = 0.8984375f;
	public static final float BLUE = 0.8984375f;

	public static final int RENDER_DISTANCE = 24;
	
}