about summary refs log tree commit diff
path: root/src/game/editor/ed_editor.hpp
diff options
context:
space:
mode:
authorMagnus Auvinen <magnus.auvinen@gmail.com>2008-01-19 14:23:53 +0000
committerMagnus Auvinen <magnus.auvinen@gmail.com>2008-01-19 14:23:53 +0000
commitf9782f628f70936c4d5c31351e7d7b36d373c322 (patch)
tree91d36db028f19e488842142582da55b7087d0b15 /src/game/editor/ed_editor.hpp
parentb5a6dacfa30d8f7a9714f2ea4694234b5d7c09bf (diff)
downloadzcatch-f9782f628f70936c4d5c31351e7d7b36d373c322.tar.gz
zcatch-f9782f628f70936c4d5c31351e7d7b36d373c322.zip
support for external images in the map editor
Diffstat (limited to 'src/game/editor/ed_editor.hpp')
-rw-r--r--src/game/editor/ed_editor.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/game/editor/ed_editor.hpp b/src/game/editor/ed_editor.hpp
index bb6ac939..df3a1fc1 100644
--- a/src/game/editor/ed_editor.hpp
+++ b/src/game/editor/ed_editor.hpp
@@ -214,9 +214,15 @@ public:
 	{
 		tex_id = -1;
 		name[0] = 0;
+		external = 0;
+		width = 0;
+		height = 0;
+		data = 0;
+		format = 0;
 	}
 	
 	int tex_id;
+	int external;
 	char name[128];
 };