resent-1.8/src/main/java/dev/resent/client/ClientInfo.java
ThisIsALegitUsername 458f28ebc4 w
2023-03-07 22:22:39 +00:00

26 lines
575 B
Java

package dev.resent.client;
import dev.resent.util.render.Color;
public class ClientInfo {
public static final String name = "Resent";
public static final String version = "3.6";
public static final String author = "Nitwit";
public static final String release = Release.STABLE.name;
public static final int primaryColor = new Color(66, 66, 66).getRGB();
public static final int secondaryColor = new Color(117, 117, 117).getRGB();
public enum Release {
BETA("Beta"),
STABLE("Stable");
String name;
Release(String name) {
this.name = name;
}
}
}