aboutsummaryrefslogtreecommitdiff
path: root/src/jsoncpp/json
ModeNameSize
-rw-r--r--CMakeLists.txt138logplain
-rw-r--r--UPDATING504logplain
-rw-r--r--json.h63979logplain
-rw-r--r--jsoncpp.cpp106667logplain
an class="hl com">GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #pragma once #include "content/mods.h" class ServerScripting; /** * Manage server mods * * All new calls to this class must be tested in test_servermodmanager.cpp */ class ServerModManager : public ModConfiguration { public: /** * Creates a ServerModManager which targets worldpath * @param worldpath */ ServerModManager(const std::string &worldpath); void loadMods(ServerScripting *script); const ModSpec *getModSpec(const std::string &modname) const; void getModNames(std::vector<std::string> &modlist) const; void getModsMediaPaths(std::vector<std::string> &paths) const; };