aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/graphics/je_texture.h
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2018-12-06 13:12:29 +0800
committerchai <chaifix@163.com>2018-12-06 13:12:29 +0800
commitb3712ebdf148bd8d2d31e70734a4b7923f6038f8 (patch)
treec813d158030ee33b76d7ec23fa2deaa1eb0a4e36 /src/libjin/graphics/je_texture.h
parent17d86218e25a6c889c24822da8d7b59967babd89 (diff)
*remove create function
Diffstat (limited to 'src/libjin/graphics/je_texture.h')
-rw-r--r--src/libjin/graphics/je_texture.h17
1 files changed, 14 insertions, 3 deletions
diff --git a/src/libjin/graphics/je_texture.h b/src/libjin/graphics/je_texture.h
index 8e667f1..94e7a01 100644
--- a/src/libjin/graphics/je_texture.h
+++ b/src/libjin/graphics/je_texture.h
@@ -20,6 +20,7 @@ namespace JinEngine
class Texture : public Graphic
{
public:
+/*
///
///
///
@@ -34,17 +35,27 @@ namespace JinEngine
///
///
static Texture* createTexture();
+*/
///
///
///
- ~Texture();
+ Texture();
+
+ ///
+ ///
+ ///
+ Texture(const char* path);
- private:
///
///
///
- Texture(const Bitmap* bitmap);
+ Texture(const Bitmap* bitmap);
+
+ ///
+ ///
+ ///
+ ~Texture();
};