mirror of
https://github.com/Relintai/texture_packer.git
synced 2024-11-12 10:15:16 +01:00
13 lines
187 B
C++
13 lines
187 B
C++
#include "register_types.h"
|
|
|
|
#include "merge_texture.h"
|
|
|
|
void register_texture_packer_types() {
|
|
ClassDB::register_class<MergeTexture>();
|
|
}
|
|
|
|
void unregister_texture_packer_types() {
|
|
|
|
}
|
|
|