mirror of
https://github.com/Relintai/pandemonium_engine_minimal.git
synced 2024-11-17 22:17:19 +01:00
34 lines
866 B
C++
34 lines
866 B
C++
#ifndef RESOURCE_PRELOADER_H
|
|
#define RESOURCE_PRELOADER_H
|
|
|
|
/* resource_preloader.h */
|
|
|
|
|
|
#include "scene/main/node.h"
|
|
|
|
class ResourcePreloader : public Node {
|
|
GDCLASS(ResourcePreloader, Node);
|
|
|
|
RBMap<StringName, RES> resources;
|
|
|
|
void _set_resources(const Array &p_data);
|
|
Array _get_resources() const;
|
|
PoolVector<String> _get_resource_list() const;
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
|
|
public:
|
|
void add_resource(const StringName &p_name, const RES &p_resource);
|
|
void remove_resource(const StringName &p_name);
|
|
void rename_resource(const StringName &p_from_name, const StringName &p_to_name);
|
|
bool has_resource(const StringName &p_name) const;
|
|
RES get_resource(const StringName &p_name) const;
|
|
|
|
void get_resource_list(List<StringName> *p_list);
|
|
|
|
ResourcePreloader();
|
|
};
|
|
|
|
#endif // RESOURCE_PRELOADER_H
|