package shootergame.tiles; import shootergame.init.Textures; public class TileTree extends TileVertical { public TileTree(String id) { super(id, Textures.TILE_TREE, 4); // Set some settings this.opaqueTile = true; this.tileSolid = true; } }