namespace PKHeX.Core
{
///
/// Indicates the Availability of the Generation 2 Headbutt Tree
///
public enum TreeEncounterAvailable : byte
{
///
/// Encounter is possible a reachable tree
///
ValidTree,
///
/// Encounter is only possible a tree reachable only with walk-through walls cheats
///
InvalidTree,
///
/// Encounter is not possible in any tree
///
Impossible
}
}