diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-01-19 14:23:53 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-01-19 14:23:53 +0000 |
| commit | f9782f628f70936c4d5c31351e7d7b36d373c322 (patch) | |
| tree | 91d36db028f19e488842142582da55b7087d0b15 /src/game/editor/ed_editor.hpp | |
| parent | b5a6dacfa30d8f7a9714f2ea4694234b5d7c09bf (diff) | |
| download | zcatch-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.hpp | 6 |
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]; }; |