2019-09-26 22:32:32 +02:00
|
|
|
using System;
|
|
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
namespace Content.Shared.Targeting
|
2019-09-26 22:32:32 +02:00
|
|
|
{
|
|
|
|
|
/// <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
|
|
|
|
|
}
|
|
|
|
|
}
|