17 lines
303 B
C#
17 lines
303 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Botany
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public enum PlantHolderVisuals
|
|
{
|
|
PlantRsi,
|
|
PlantState,
|
|
HealthLight,
|
|
WaterLight,
|
|
NutritionLight,
|
|
AlertLight,
|
|
HarvestLight,
|
|
}
|
|
}
|