// API Link: https://tfb.neocities.org/1.16.5/org/bukkit/GrassSpecies

namespace org.bukkit {
	/** @description Represents the different types of grass */
	export enum GrassSpecies {

		/** @description Represents the dead looking grass */
		DEAD,
		/** @description Represents the fern-looking grass species */
		FERN_LIKE,
		/** @description Represents the normal grass species */
		NORMAL
	}
}