Created Prefab class to be used to track prefab tile configurations

This commit is contained in:
Collin Smith 2021-07-24 00:49:27 -07:00
parent b10a059840
commit 4421bdf78f

View File

@ -0,0 +1,8 @@
package com.riiablo.map2;
import com.riiablo.codec.util.BBox;
public class Prefab extends BBox {
public String name;
public int group;
}