diff options
author | metaphysicsIO <103212704+metaphysicsIO@users.noreply.github.com> | 2023-11-17 12:18:04 -0600 |
---|---|---|
committer | metaphysicsIO <103212704+metaphysicsIO@users.noreply.github.com> | 2023-11-17 12:18:04 -0600 |
commit | a1f7155a1ea42fd7afa1c1546d11a6412dbd06bd (patch) | |
tree | 3c979b5173cc72ea18ba13d5cacb3ade5639e04f /SavEdit.h | |
parent | 511e5abbfe4af714c555e977d64ebd99e4e113f9 (diff) | |
download | PSE-a1f7155a1ea42fd7afa1c1546d11a6412dbd06bd.tar.gz |
Party editing feature implemented.
Diffstat (limited to 'SavEdit.h')
-rw-r--r-- | SavEdit.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -3,6 +3,7 @@ #include <iostream> #include <vector> +#include <map> class SavEdit { @@ -28,6 +29,8 @@ class SavEdit void clear(); void debug(); void displayItems(); + void pkmnMap(); + void printPkmnlist(); void printMovelist(); int selectStat(); void modMainMenu(); @@ -39,6 +42,7 @@ class SavEdit enum language{en_US=0, ie_gle=1, ja_jp=2}; int lang; int m_changes = 0; + std::map<std::string, std::string> pkmn; }; #endif |