2015-01-26 00:38:58 -05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace TrueCraft.API
|
|
|
|
|
{
|
2015-06-11 23:06:00 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Enumerates the different species of plants in TrueCraft.
|
|
|
|
|
/// </summary>
|
2015-01-26 00:38:58 -05:00
|
|
|
|
public enum PlantSpecies
|
|
|
|
|
{
|
2015-06-11 23:06:00 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Rose flower.
|
|
|
|
|
/// </summary>
|
2015-01-26 00:38:58 -05:00
|
|
|
|
Rose,
|
2015-06-11 23:06:00 -04:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Dandelion flower.
|
|
|
|
|
/// </summary>
|
2015-01-26 00:38:58 -05:00
|
|
|
|
Dandelion,
|
2015-06-11 23:06:00 -04:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Tall grass.
|
|
|
|
|
/// </summary>
|
2015-01-26 00:38:58 -05:00
|
|
|
|
TallGrass,
|
2015-06-11 23:06:00 -04:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Fern.
|
|
|
|
|
/// </summary>
|
2015-01-26 00:38:58 -05:00
|
|
|
|
Fern,
|
2015-06-11 23:06:00 -04:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Dead bush.
|
|
|
|
|
/// </summary>
|
2015-01-26 00:38:58 -05:00
|
|
|
|
Deadbush,
|
2015-06-11 23:06:00 -04:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Cactus.
|
|
|
|
|
/// </summary>
|
2015-01-26 00:38:58 -05:00
|
|
|
|
Cactus,
|
2015-06-11 23:06:00 -04:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Sugarcane.
|
|
|
|
|
/// </summary>
|
2015-01-26 00:38:58 -05:00
|
|
|
|
SugarCane,
|
|
|
|
|
}
|
|
|
|
|
}
|