20 lines
376 B
C#
20 lines
376 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 DrinkCanStateVisual : byte
|
|
{
|
|
Closed,
|
|
Opened
|
|
}
|
|
}
|