|
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";
|
|
}
|
|
}
|