14 lines
381 B
C#
14 lines
381 B
C#
|
|
#nullable enable
|
|||
|
|
using Content.Shared.GameObjects.Components.Mobs.State;
|
|||
|
|
using Robust.Shared.GameObjects;
|
|||
|
|
|
|||
|
|
namespace Content.Client.GameObjects.Components.Mobs.State
|
|||
|
|
{
|
|||
|
|
[RegisterComponent]
|
|||
|
|
[ComponentReference(typeof(SharedMobStateComponent))]
|
|||
|
|
[ComponentReference(typeof(IMobStateComponent))]
|
|||
|
|
public class MobStateComponent : SharedMobStateComponent
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|