pppi-rpg-game/program/combat_system.h

24 lines
856 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 Класс CombatSystem регулирует механики боя и взаимодействия во время сражений.
*/
class CombatSystem {
public:
/**
* @brief Инициирует бой между персонажами или группами.
* @param participants Участники боя.
*/
void initiateCombat(/* участники боя */);
/**
* @brief Обновляет состояние боя.
* @param deltaTime Время, прошедшее с предыдущего обновления, в секундах.
*/
void update(float deltaTime);
/**
* @brief Рассчитывает исход атаки.
* @param attackParams Параметры атаки.
*/
void calculateAttackOutcome(/* параметры атаки */);
};