mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-19 06:28:40 +03:00
15 lines
393 B
C#
15 lines
393 B
C#
using Content.Shared.MobState;
|
|
using Content.Shared.MobState.Components;
|
|
using Content.Shared.MobState.State;
|
|
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Client.MobState
|
|
{
|
|
[RegisterComponent]
|
|
[ComponentReference(typeof(SharedMobStateComponent))]
|
|
[ComponentReference(typeof(IMobStateComponent))]
|
|
public class MobStateComponent : SharedMobStateComponent
|
|
{
|
|
}
|
|
}
|