mirror of
https://github.com/Maks1mS/pppi-rpg-game.git
synced 2024-12-23 22:32:59 +03:00
добавлен quest_system
This commit is contained in:
parent
9f5d629954
commit
97b4fabdf5
0
program/quest_system.cpp
Normal file
0
program/quest_system.cpp
Normal file
12
program/quest_system.h
Normal file
12
program/quest_system.h
Normal file
@ -0,0 +1,12 @@
|
||||
// Система квестов - управляет заданиями и миссиями
|
||||
class QuestSystem {
|
||||
public:
|
||||
// Добавляет новый квест
|
||||
void addQuest(/* параметры квеста */);
|
||||
|
||||
// Проверяет выполнение условий квеста
|
||||
void update(float deltaTime);
|
||||
|
||||
// Завершает квест
|
||||
void completeQuest(int questId);
|
||||
};
|
Loading…
Reference in New Issue
Block a user