18 lines
277 B
C#
18 lines
277 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace TrueCraft.API
|
|
{
|
|
public enum PlantSpecies
|
|
{
|
|
Rose,
|
|
Dandelion,
|
|
TallGrass,
|
|
Fern,
|
|
Deadbush,
|
|
Cactus,
|
|
SugarCane,
|
|
}
|
|
} |