(svn r5787) Rename width, height and unk of struct DrawTileSeqStruct to size_{x,y,z}

This commit is contained in:
tron
2006-08-06 08:23:19 +00:00
parent e6ffc4c647
commit fb251d18e0
5 changed files with 18 additions and 10 deletions

View File

@@ -12,8 +12,9 @@ typedef struct DrawTileSeqStruct {
int8 delta_x; // 0x80 is sequence terminator
int8 delta_y;
int8 delta_z;
byte width,height;
byte unk; // 'depth', just z-size; TODO: rename
byte size_x;
byte size_y;
byte size_z;
uint32 image;
} DrawTileSeqStruct;