resent-1.8/src/main/java/dev/resent/client/ClientInfo.java

26 lines
575 B
Java
Raw Normal View History

2023-02-28 14:49:25 -08:00
package dev.resent.client;
2023-03-07 14:22:39 -08:00
import dev.resent.util.render.Color;
2023-02-28 14:49:25 -08:00
public class ClientInfo {
public static final String name = "Resent";
public static final String version = "3.6";
2023-02-28 18:57:47 -08:00
public static final String author = "Nitwit";
2023-03-07 14:22:39 -08:00
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();
2023-02-28 14:49:25 -08:00
public enum Release {
BETA("Beta"),
STABLE("Stable");
String name;
Release(String name) {
this.name = name;
}
}
}