summary refs log tree commit diff stats
path: root/src/renderer.h
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2015-03-14 16:13:11 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2015-03-14 16:13:11 -0400
commit44324ba5d6cac01048cc5cbecbff255ee56f2fc0 (patch)
tree63e859067d214bfccf1d75520e1cedece0e91963 /src/renderer.h
parent5990e7802c84b3f407de3934a1d75721115d1da7 (diff)
downloadtherapy-44324ba5d6cac01048cc5cbecbff255ee56f2fc0.tar.gz
therapy-44324ba5d6cac01048cc5cbecbff255ee56f2fc0.tar.bz2
therapy-44324ba5d6cac01048cc5cbecbff255ee56f2fc0.zip
Wrote simple factory to read map and entity data from XML files
Diffstat (limited to 'src/renderer.h')
-rw-r--r--src/renderer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/renderer.h b/src/renderer.h index 90ec101..84ad688 100644 --- a/src/renderer.h +++ b/src/renderer.h
@@ -15,7 +15,7 @@ class Texture {
15 public: 15 public:
16 Texture(int width, int height); 16 Texture(int width, int height);
17 Texture(const char* file); 17 Texture(const char* file);
18 Texture(Texture& tex); 18 Texture(const Texture& tex);
19 Texture(Texture&& tex); 19 Texture(Texture&& tex);
20 ~Texture(); 20 ~Texture();
21 Texture& operator= (Texture tex); 21 Texture& operator= (Texture tex);