mirror of
https://github.com/Relintai/texture_packer.git
synced 2024-11-14 10:17:21 +01:00
19 lines
266 B
C
19 lines
266 B
C
|
#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
|