Delta-v/Content.Shared/GameObjects/Components/Nutrition/SharedStomachComponent.cs

13 lines
294 B
C#

using Robust.Shared.GameObjects;
namespace Content.Shared.GameObjects.Components.Nutrition
{
/// <summary>
/// Shared class for stomach components
/// </summary>
public class SharedStomachComponent : Component
{
public override string Name => "Stomach";
}
}