pkNX/pkNX.Structures/Move/MoveTarget.cs
Kurt 2578ba073c Refactoring
File scoped namespaces for all lib projects
netstandard2.0 => net6; now uniform. bye netframework!
2022-10-01 17:08:17 -07:00

23 lines
321 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,
}