10 lines
268 B
C#
10 lines
268 B
C#
|
|
using Robust.Shared.GameStates;
|
||
|
|
|
||
|
|
namespace Content.Shared.Overlays;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// This component allows you to see the hungriness of mobs.
|
||
|
|
/// </summary>
|
||
|
|
[RegisterComponent, NetworkedComponent]
|
||
|
|
public sealed partial class ShowHungerIconsComponent : Component { }
|