summaryrefslogtreecommitdiffstats
path: root/SavEdit.h
diff options
context:
space:
mode:
authormetaphysicsIO <103212704+metaphysicsIO@users.noreply.github.com>2023-11-17 12:18:04 -0600
committermetaphysicsIO <103212704+metaphysicsIO@users.noreply.github.com>2023-11-17 12:18:04 -0600
commita1f7155a1ea42fd7afa1c1546d11a6412dbd06bd (patch)
tree3c979b5173cc72ea18ba13d5cacb3ade5639e04f /SavEdit.h
parent511e5abbfe4af714c555e977d64ebd99e4e113f9 (diff)
downloadPSE-a1f7155a1ea42fd7afa1c1546d11a6412dbd06bd.tar.gz
Party editing feature implemented.
Diffstat (limited to 'SavEdit.h')
-rw-r--r--SavEdit.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/SavEdit.h b/SavEdit.h
index 6359fda..0716a78 100644
--- a/SavEdit.h
+++ b/SavEdit.h
@@ -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