gif_loader/gif_loader.h

23 lines
308 B
C
Raw Normal View History

2022-12-10 17:06:57 +01:00
#ifndef GIF_LOADER_H
#define GIF_LOADER_H
#include "core/object/reference.h"
2022-12-10 17:14:50 +01:00
#include "core/io/image.h"
2022-12-10 17:06:57 +01:00
class GIFLoader : public Reference {
2022-12-10 17:14:50 +01:00
GDCLASS(GIFLoader, Reference);
2022-12-10 17:06:57 +01:00
public:
2022-12-10 17:14:50 +01:00
Array load_gif(const String &file);
GIFLoader();
~GIFLoader();
private:
static void _bind_methods();
2022-12-10 17:06:57 +01:00
};
#endif