2021-06-09 22:19:39 +02:00
|
|
|
using Content.Shared.CombatMode;
|
2019-06-30 00:01:41 +02:00
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
namespace Content.Server.CombatMode
|
2019-06-30 00:01:41 +02:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Stores whether an entity is in "combat mode"
|
|
|
|
|
/// This is used to differentiate between regular item interactions or
|
|
|
|
|
/// using *everything* as a weapon.
|
|
|
|
|
/// </summary>
|
2019-07-31 15:02:36 +02:00
|
|
|
[RegisterComponent]
|
2020-03-25 17:53:50 +01:00
|
|
|
[ComponentReference(typeof(SharedCombatModeComponent))]
|
2019-09-26 22:32:32 +02:00
|
|
|
public sealed class CombatModeComponent : SharedCombatModeComponent
|
2019-06-30 00:01:41 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|