2021-06-09 22:19:39 +02:00
|
|
|
|
using Content.Shared.MobState;
|
2021-06-28 14:17:37 +02:00
|
|
|
|
using Content.Shared.MobState.Components;
|
2021-06-09 22:19:39 +02:00
|
|
|
|
using Content.Shared.MobState.State;
|
2020-12-07 14:52:55 +01:00
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
|
namespace Content.Client.MobState
|
2020-12-07 14:52:55 +01:00
|
|
|
|
{
|
|
|
|
|
|
[RegisterComponent]
|
|
|
|
|
|
[ComponentReference(typeof(SharedMobStateComponent))]
|
|
|
|
|
|
[ComponentReference(typeof(IMobStateComponent))]
|
|
|
|
|
|
public class MobStateComponent : SharedMobStateComponent
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|