+ Added core base for dew
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package commands.dew.core.data;
|
||||
|
||||
public enum DewMapTile
|
||||
{
|
||||
Default(0), Tree(1);
|
||||
|
||||
private final int value;
|
||||
private DewMapTile(int value)
|
||||
{
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
public int getValue()
|
||||
{
|
||||
return value;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user