LightType.java
package com.hypixel.hytale.server.spawning.assets.spawns;
public enum LightType {
Light,
SkyLight,
Sunlight,
RedLight,
GreenLight,
BlueLight;
public static final LightType[] VALUES = values();
private LightType() {
}
}