UltimateTimber/src/main/java/com/songoda/ultimatetimber/tree/TreeBlockType.java

10 lines
170 B
Java
Raw Normal View History

2019-03-28 01:56:39 +01:00
package com.songoda.ultimatetimber.tree;
/**
* Represents a tree block type and whether it is a log or a leaf block
*/
public enum TreeBlockType {
LOG,
LEAF
}