You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
393 B
19 lines
393 B
3 years ago
|
package sig.map;
|
||
|
|
||
|
import sig.engine.String;
|
||
|
|
||
|
public enum DataTile {
|
||
|
NULL, //File is populated by 0s by default. This represents nothing.
|
||
|
BUN1("Spawns a blue bun"),
|
||
|
BUN2("Spawns a green bun"),
|
||
|
BUN3("Spawns a yellow bun"),
|
||
|
BUN4("Spawns a red bun");
|
||
|
|
||
|
String description;
|
||
|
|
||
|
DataTile(){}
|
||
|
DataTile(java.lang.String s) {
|
||
|
this.description=new String(s);
|
||
|
}
|
||
|
}
|