gif_loader/gif_loader.cpp

17 lines
275 B
C++
Raw Normal View History

2022-12-10 17:06:57 +01:00
#include "gif_loader.h"
2022-12-10 17:14:50 +01:00
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);
}