pppi-rpg-game/program/modding_support.h

23 lines
873 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.

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