mirror of
https://github.com/Maks1mS/pppi-rpg-game.git
synced 2024-12-23 22:32:59 +03:00
13 lines
452 B
C++
13 lines
452 B
C++
// Система диалогов - позволяет игрокам взаимодействовать с NPC через диалоговые окна
|
||
class DialogueSystem {
|
||
public:
|
||
// Начинает диалог с NPC
|
||
void startDialogue(int npcId);
|
||
|
||
// Обрабатывает выбор игрока в диалоге
|
||
void processDialogueChoice(int choiceId);
|
||
|
||
// Завершает диалог
|
||
void endDialogue();
|
||
};
|