17 lines
317 B
C#
17 lines
317 B
C#
|
|
using System;
|
|||
|
|
using Robust.Shared.Serialization;
|
|||
|
|
|
|||
|
|
namespace Content.Shared.GameObjects.Components.Botany
|
|||
|
|
{
|
|||
|
|
[Serializable, NetSerializable]
|
|||
|
|
public enum PlantHolderVisuals
|
|||
|
|
{
|
|||
|
|
Plant,
|
|||
|
|
HealthLight,
|
|||
|
|
WaterLight,
|
|||
|
|
NutritionLight,
|
|||
|
|
AlertLight,
|
|||
|
|
HarvestLight,
|
|||
|
|
}
|
|||
|
|
}
|