diff options
author | Andrew <forkk@forkk.net> | 2013-02-20 08:32:26 -0600 |
---|---|---|
committer | Andrew <forkk@forkk.net> | 2013-02-20 08:32:59 -0600 |
commit | f71479ec33562c9a0ebbdb335bef5e2824a12710 (patch) | |
tree | 198479995279a2a9eaa04fce405ee05b0c7df482 /data/inst/instance.h | |
parent | 6e5017e48b633e20bbba61ac2e7cd58e693aec4e (diff) | |
download | PrismLauncher-f71479ec33562c9a0ebbdb335bef5e2824a12710.tar.gz PrismLauncher-f71479ec33562c9a0ebbdb335bef5e2824a12710.tar.bz2 PrismLauncher-f71479ec33562c9a0ebbdb335bef5e2824a12710.zip |
Added stdinstance plugin and a ton of plugin stuff.
Diffstat (limited to 'data/inst/instance.h')
-rw-r--r-- | data/inst/instance.h | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/data/inst/instance.h b/data/inst/instance.h index 56e9d0b8..035704b9 100644 --- a/data/inst/instance.h +++ b/data/inst/instance.h @@ -214,6 +214,51 @@ public: { setField("lastLaunchTime", val); } + ////// Directories ////// + //! Gets the path to the instance's minecraft folder. + QString minecraftDir() const; + + /*! + * \brief Gets the path to the instance's instance mods folder. + * This is the folder where the jar mods are kept. + */ + QString instModsDir() const; + + //! Gets the path to the instance's bin folder. + QString binDir() const; + + //! Gets the path to the instance's saves folder. + QString savesDir() const; + + //! Gets the path to the instance's mods folder. (.minecraft/mods) + QString mlModsDir() const; + + //! Gets the path to the instance's coremods folder. + QString coreModsDir() const; + + //! Gets the path to the instance's resources folder. + QString resourceDir() const; + + //! Gets the path to the instance's screenshots folder. + QString screenshotsDir() const; + + //! Gets the path to the instance's texture packs folder. + QString texturePacksDir() const; + + + ////// Files ////// + //! Gets the path to the instance's minecraft.jar + QString mcJar() const; + + //! Gets the path to the instance's mcbackup.jar. + QString mcBackup() const; + + //! Gets the path to the instance's config file. + QString configFile() const; + + //! Gets the path to the instance's modlist file. + QString modListFile() const; + ////// Settings ////// //// Java Settings //// |