pppi-rpg-game/program/ui_system.h

12 lines
500 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.

// Интерфейс пользователя (UI) - управляет элементами интерфейса и взаимодействием с пользователем
class UISystem {
public:
// Создает новый элемент UI
void createUIElement(/* параметры элемента */);
// Обновляет состояние UI элементов
void update(float deltaTime);
// Отрисовывает элементы UI
void render();
};