pppi-rpg-game/program/resource_manager.h

14 lines
556 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.

// Менеджер ресурсов - управляет загрузкой и выгрузкой игровых ресурсов
class ResourceManager {
public:
// Загружает ресурс (текстура, модель, звук и т.д.)
void loadResource(const std::string& resourcePath);
// Возвращает загруженный ресурс
template <typename ResourceType>
ResourceType getResource(const std::string& resourceName);
// Освобождает ресурсы
void unloadAllResources();
};