servuo/Server/Targeting/TargetFlags.cs

13 lines
159 B
C#
Raw Permalink Normal View History

using System;
2013-10-28 07:09:42 +00:00
namespace Server.Targeting
{
2020-08-21 02:19:04 +01:00
[Flags]
public enum TargetFlags : byte
{
None = 0x00,
Harmful = 0x01,
Beneficial = 0x02,
}
}