= Configs updating
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
package dataStructures;
|
||||
|
||||
public enum KittyStartupMode
|
||||
{
|
||||
Development("dev"), Release("release");
|
||||
|
||||
private final String value;
|
||||
private KittyStartupMode(String value)
|
||||
{
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
public String getValue()
|
||||
{
|
||||
return value;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user