modernuo/Projects/Server/Targeting/TargetFlags.cs

13 lines
176 B
C#
Raw Permalink Normal View History

2020-08-25 18:53:35 -07:00
using System;
namespace Server.Targeting
{
[Flags]
public enum TargetFlags : byte
{
None = 0x00,
Harmful = 0x01,
Beneficial = 0x02
}
}