pppi-rpg-game/program/ui_system.h

23 lines
793 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 Класс UISystem управляет элементами интерфейса и взаимодействием с пользователем.
*/
class UISystem {
public:
/**
* @brief Создает новый элемент UI.
* @param elementParams Параметры создаваемого элемента интерфейса.
*/
void createUIElement(/* параметры элемента */);
/**
* @brief Обновляет состояние UI элементов.
* @param deltaTime Время, прошедшее с предыдущего обновления, в секундах.
*/
void update(float deltaTime);
/**
* @brief Отрисовывает элементы UI.
*/
void render();
};