A game highly inspired by Rabi-Ribi being developed using a custom-developed Sig game engine from the ground up with a proper game studio!
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.
RabiClone/src/sig/map/DataTile.java

19 lines
393 B

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);
}
}