31 lines
No EOL
997 B
C#
31 lines
No EOL
997 B
C#
/***************************************************************************
|
|
* TargetFlags.cs
|
|
* -------------------
|
|
* begin : May 1, 2002
|
|
* copyright : (C) The RunUO Software Team
|
|
* email : info@runuo.com
|
|
*
|
|
* $Id$
|
|
*
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
***************************************************************************/
|
|
|
|
using System;
|
|
|
|
namespace Server.Targeting
|
|
{
|
|
public enum TargetFlags : byte
|
|
{
|
|
None = 0x00,
|
|
Harmful = 0x01,
|
|
Beneficial = 0x02,
|
|
}
|
|
} |