mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 00:58:01 +00:00
f89d9ca323
precompute Index & make readonly when initializing as we use Index at least once when initializing the treesarea
23 lines
No EOL
570 B
C#
23 lines
No EOL
570 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Indicates the Availability of the Generation 2 Headbutt Tree
|
|
/// </summary>
|
|
public enum TreeEncounterAvailable
|
|
{
|
|
/// <summary>
|
|
/// Encounter is possible a reachable tree
|
|
/// </summary>
|
|
ValidTree,
|
|
|
|
/// <summary>
|
|
/// Encounter is only possible a tree reachable only with walk-through walls cheats
|
|
/// </summary>
|
|
InvalidTree,
|
|
|
|
/// <summary>
|
|
/// Encounter is not possible in any tree
|
|
/// </summary>
|
|
Impossible
|
|
}
|
|
} |