diff options
author | Petr Mrázek <peterix@gmail.com> | 2013-08-17 13:40:51 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2013-08-17 13:40:51 +0200 |
commit | 253067c782955380bbf66ac0475dc954375b1ff4 (patch) | |
tree | ca97e231fd3a764256d95b5fc8d08fc25ff72161 /logic/NostalgiaInstance.cpp | |
parent | 77e80665422c4e97e2286418ab55e20c4030023b (diff) | |
download | MultiMC-253067c782955380bbf66ac0475dc954375b1ff4.tar MultiMC-253067c782955380bbf66ac0475dc954375b1ff4.tar.gz MultiMC-253067c782955380bbf66ac0475dc954375b1ff4.tar.lz MultiMC-253067c782955380bbf66ac0475dc954375b1ff4.tar.xz MultiMC-253067c782955380bbf66ac0475dc954375b1ff4.zip |
Move all the things (YES. Move them.)
Also, implemented some basic modlist logic, to be wired up.
Diffstat (limited to 'logic/NostalgiaInstance.cpp')
-rw-r--r-- | logic/NostalgiaInstance.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/logic/NostalgiaInstance.cpp b/logic/NostalgiaInstance.cpp new file mode 100644 index 00000000..0a7f3c5a --- /dev/null +++ b/logic/NostalgiaInstance.cpp @@ -0,0 +1,12 @@ +#include "NostalgiaInstance.h" + +NostalgiaInstance::NostalgiaInstance ( const QString& rootDir, SettingsObject* settings, QObject* parent ) + : OneSixInstance ( rootDir, settings, parent ) +{ + +} + +/* +ADD MORE + IF REQUIRED +*/ |