9 lines
122 B
C#
9 lines
122 B
C#
namespace Server.Targeting
|
|
{
|
|
public enum TargetFlags : byte
|
|
{
|
|
None = 0x00,
|
|
Harmful = 0x01,
|
|
Beneficial = 0x02,
|
|
}
|
|
} |