summaryrefslogtreecommitdiffstats
path: root/PrivateAccess.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'PrivateAccess.cpp')
-rw-r--r--PrivateAccess.cpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/PrivateAccess.cpp b/PrivateAccess.cpp
new file mode 100644
index 0000000..36a90ed
--- /dev/null
+++ b/PrivateAccess.cpp
@@ -0,0 +1,31 @@
+#include <iostream>
+
+#include "SavEdit.h"
+
+SavEdit::SavEdit()
+{
+ /*
+ * init
+ */
+
+ filename = "Pokemon - Red Version (USA, Europe) (SGB Enhanced).sav";
+ lang = en_US;
+}
+
+std::string SavEdit::getFilename()
+{
+ /*
+ * Return the file name.
+ */
+
+ return filename;
+}
+
+void SavEdit::setFilename(std::string fname)
+{
+ /*
+ * Set the file name.
+ */
+
+ filename = fname;
+}