mirror of
https://github.com/Relintai/gif_loader.git
synced 2024-11-12 10:25:04 +01:00
17 lines
275 B
C++
17 lines
275 B
C++
|
|
#include "gif_loader.h"
|
|
|
|
Array GIFLoader::load_gif(const String &file) {
|
|
Array images;
|
|
|
|
return images;
|
|
}
|
|
|
|
GIFLoader::GIFLoader() {
|
|
}
|
|
GIFLoader::~GIFLoader() {
|
|
}
|
|
|
|
void GIFLoader::_bind_methods() {
|
|
ClassDB::bind_method(D_METHOD("load_gif", "file"), &GIFLoader::load_gif);
|
|
} |