texture_packer/merge_texture.h

19 lines
266 B
C
Raw Normal View History

2019-10-20 21:19:00 +02:00
#ifndef MERGE_TEXTURE_H
#define MERGE_TEXTURE_H
#include "scene/resources/texture.h"
class MergeTexture : public ImageTexture {
GDCLASS(MergeTexture, ImageTexture);
public:
MergeTexture();
~MergeTexture();
protected:
static void _bind_methods();
};
#endif