Files
tbd-station-14/Content.Server/GameObjects/Components/Mobs/CombatModeComponent.cs
Pieter-Jan Briers 705aeceba6 Need to merge this
2020-03-25 11:16:57 +01:00

16 lines
466 B
C#

using Content.Shared.GameObjects.Components.Mobs;
using Robust.Shared.GameObjects;
namespace Content.Server.GameObjects.Components.Mobs
{
/// <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>
[RegisterComponent]
public sealed class CombatModeComponent : SharedCombatModeComponent
{
}
}