mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-18 18:06:56 +01:00
23 lines
272 B
C++
23 lines
272 B
C++
#ifndef ICONLOADER_H
|
|
#define ICONLOADER_H
|
|
|
|
|
|
class IconLoader : public Node {
|
|
GDCLASS(IconLoader, Node);
|
|
|
|
public:
|
|
|
|
ImageTexture load_icon_from_name(const String &icon_name);
|
|
|
|
IconLoader();
|
|
~IconLoader();
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
|
|
//tool
|
|
};
|
|
|
|
|
|
#endif
|