pppi-rpg-game/program/modding_support.h

13 lines
612 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Система модификаций - позволяет сообществу создавать и распространять собственные модификации к игре
class ModdingSupport {
public:
// Загружает модификации
void loadMods();
// Включает или отключает модификацию
void toggleMod(const std::string& modId, bool enable);
// Предоставляет интерфейс для модификаций для взаимодействия с игровым движком
void provideModdingAPI();
};