Files
crystall-punk-14/Content.Server/MobState/States/MobStateManager.cs
2021-06-09 22:19:39 +02:00

14 lines
358 B
C#

using Content.Shared.MobState;
using Content.Shared.MobState.State;
using Robust.Shared.GameObjects;
namespace Content.Server.MobState.States
{
[RegisterComponent]
[ComponentReference(typeof(SharedMobStateComponent))]
[ComponentReference(typeof(IMobStateComponent))]
public class MobStateComponent : SharedMobStateComponent
{
}
}