pppi-rpg-game/program/animation_system.h

18 lines
651 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 Класс AnimationSystem управляет анимациями персонажей и объектов.
*/
class AnimationSystem {
public:
/**
* @brief Добавляет анимацию к объекту.
* @param animationParams Параметры анимации для добавления.
*/
void addAnimation(/* параметры анимации */);
/**
* @brief Обновляет анимации объектов.
* @param deltaTime Время, прошедшее с предыдущего обновления, в секундах.
*/
void update(float deltaTime);
};