mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
fc754b346b
[Language Reference](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/proposals/csharp-10.0/file-scoped-namespaces) Updates all the files, one less level of indentation. Some small changes were made to API surfaces, renaming `PKM pkm` -> `PKM pk`, and `LegalityAnalysis.pkm` -> `LegalityAnalysis.Entity`
20 lines
522 B
C#
20 lines
522 B
C#
namespace PKHeX.Core;
|
|
|
|
public enum Stamp7
|
|
{
|
|
Official_Pokemon_Trainer,
|
|
Melemele_Trial_Completion,
|
|
Akala_Trial_Completion,
|
|
Ula_ula_Trial_Completion,
|
|
Poni_Trial_Completion,
|
|
Island_Challenge_Completion,
|
|
Melemele_Pokedex_Completion,
|
|
Akala_Pokedex_Completion,
|
|
Ula_ula_Pokedex_Completion,
|
|
Poni_Pokedex_Completion,
|
|
Alola_Pokedex_Completion,
|
|
_50_Consecutive_Single_Battle_Wins,
|
|
_50_Consecutive_Double_Battle_Wins,
|
|
_50_Consecutive_Multi_Battle_Wins,
|
|
Poke_Finder_Pro,
|
|
}
|