pppi-rpg-game/program/dialogue_system.h

23 lines
741 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 Класс DialogueSystem позволяет игрокам взаимодействовать с NPC через диалоговые окна.
*/
class DialogueSystem {
public:
/**
* @brief Начинает диалог с NPC.
* @param npcId Идентификатор NPC, с которым начинается диалог.
*/
void startDialogue(int npcId);
/**
* @brief Обрабатывает выбор игрока в диалоге.
* @param choiceId Идентификатор выбранного варианта диалога.
*/
void processDialogueChoice(int choiceId);
/**
* @brief Завершает диалог.
*/
void endDialogue();
};