2020-02-18 19:43:54 -08:00
|
|
|
|
using Content.Server.GameObjects.Components.Mobs;
|
2020-03-25 11:16:57 +01:00
|
|
|
|
using Content.Shared.GameObjects.EntitySystems;
|
2019-06-30 00:01:41 +02:00
|
|
|
|
using Content.Shared.Input;
|
2019-09-26 22:32:32 +02:00
|
|
|
|
using JetBrains.Annotations;
|
2019-06-30 00:01:41 +02:00
|
|
|
|
using Robust.Server.GameObjects.EntitySystems;
|
|
|
|
|
|
using Robust.Server.Interfaces.Player;
|
|
|
|
|
|
using Robust.Shared.Input;
|
2020-03-25 17:53:50 +01:00
|
|
|
|
using Robust.Shared.Interfaces.Random;
|
2019-09-26 22:32:32 +02:00
|
|
|
|
using Robust.Shared.IoC;
|
2020-03-25 17:53:50 +01:00
|
|
|
|
using Robust.Shared.Log;
|
2019-06-30 00:01:41 +02:00
|
|
|
|
using Robust.Shared.Players;
|
2020-03-25 17:53:50 +01:00
|
|
|
|
using Robust.Shared.Random;
|
2019-06-30 00:01:41 +02:00
|
|
|
|
|
2020-07-06 14:27:03 -07:00
|
|
|
|
namespace Content.Server.Interfaces.GameObjects.Components.Interaction
|
2019-06-30 00:01:41 +02:00
|
|
|
|
{
|
2019-09-26 22:32:32 +02:00
|
|
|
|
[UsedImplicitly]
|
2020-03-25 11:16:57 +01:00
|
|
|
|
public sealed class CombatModeSystem : SharedCombatModeSystem
|
2019-06-30 00:01:41 +02:00
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|