27 lines
490 B
C#
27 lines
490 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Nutrition.Components
|
|
{
|
|
// TODO: Remove maybe? Add visualizer for food
|
|
[Serializable, NetSerializable]
|
|
public enum FoodVisuals : byte
|
|
{
|
|
Visual,
|
|
MaxUses,
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum OpenableVisuals : byte
|
|
{
|
|
Opened,
|
|
Layer
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum SealableVisuals : byte
|
|
{
|
|
Sealed,
|
|
Layer,
|
|
}
|
|
}
|