mirror of
https://github.com/kwsch/pkNX.git
synced 2026-05-02 10:55:18 -05:00
23 lines
398 B
C#
23 lines
398 B
C#
namespace pkNX.Structures
|
|
{
|
|
public enum MoveTarget : byte
|
|
{
|
|
// Specific target
|
|
AnyExceptSelf,
|
|
AllyOrSelf,
|
|
Ally,
|
|
Opponent,
|
|
AllAdjacent,
|
|
AllAdjacentOpponents,
|
|
AllAllies,
|
|
Self,
|
|
All,
|
|
RandomOpponent,
|
|
|
|
// No pkm target
|
|
SideAll,
|
|
SideOpponent,
|
|
SideSelf,
|
|
Counter,
|
|
}
|
|
} |