Re-organize all projects (#4166)
This commit is contained in:
28
Content.Shared/Targeting/TargetingZone.cs
Normal file
28
Content.Shared/Targeting/TargetingZone.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
#nullable enable
|
||||
using System;
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user