* Enable nullability in Content.Client * Remove #nullable enable * Merge fixes * Remove Debug.Assert * Merge fixes * Fix build * Fix build
13 lines
364 B
C#
13 lines
364 B
C#
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
|
|
{
|
|
}
|
|
}
|