17 lines
349 B
C#
17 lines
349 B
C#
|
|
using System;
|
||
|
|
using Robust.Shared.Serialization;
|
||
|
|
|
||
|
|
namespace Content.Shared.GameObjects.Components.Nutrition
|
||
|
|
{
|
||
|
|
public class SharedFoodComponent
|
||
|
|
{
|
||
|
|
// TODO: Remove maybe? Add visualizer for food
|
||
|
|
[Serializable, NetSerializable]
|
||
|
|
public enum FoodVisuals
|
||
|
|
{
|
||
|
|
Visual,
|
||
|
|
MaxUses,
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|