Files
tbd-station-14/Content.Shared/Botany/PlantHolderVisuals.cs
2021-06-09 22:19:39 +02:00

18 lines
311 B
C#

#nullable enable
using System;
using Robust.Shared.Serialization;
namespace Content.Shared.Botany
{
[Serializable, NetSerializable]
public enum PlantHolderVisuals
{
Plant,
HealthLight,
WaterLight,
NutritionLight,
AlertLight,
HarvestLight,
}
}