mirror of
https://github.com/ServUO/ServUO
synced 2026-08-11 20:23:04 -04:00
12 lines
159 B
C#
12 lines
159 B
C#
using System;
|
|
|
|
namespace Server.Targeting
|
|
{
|
|
[Flags]
|
|
public enum TargetFlags : byte
|
|
{
|
|
None = 0x00,
|
|
Harmful = 0x01,
|
|
Beneficial = 0x02,
|
|
}
|
|
}
|