Files
tbd-station-14/Content.Shared/Targeting/TargetingZone.cs
2022-05-13 17:59:03 +10:00

27 lines
520 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.Targeting
{
/// <summary>
/// Zones the player can target for attacks.
/// </summary>
[Serializable, NetSerializable]
public enum TargetingZone
{
/// <summary>
/// Torso/arm area.
/// </summary>
Middle,
/// <summary>
/// Legs/groin area.
/// </summary>
Low,
/// <summary>
/// Go for the head.
/// </summary>
High
}
}