2020-12-07 14:52:55 +01:00
|
|
|
|
using Content.Shared.GameObjects.Components.Mobs.State;
|
2020-08-29 13:20:37 +02:00
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.GameObjects.Components.Mobs.State
|
|
|
|
|
|
{
|
|
|
|
|
|
[RegisterComponent]
|
2020-12-07 14:52:55 +01:00
|
|
|
|
[ComponentReference(typeof(SharedMobStateComponent))]
|
|
|
|
|
|
[ComponentReference(typeof(IMobStateComponent))]
|
|
|
|
|
|
public class MobStateComponent : SharedMobStateComponent
|
2020-08-29 13:20:37 +02:00
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|