1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-25 15:54:31 +01:00

fixed river rafts quarter turn draw

This commit is contained in:
Ted John
2016-05-22 23:01:07 +01:00
parent c11fc8b0cb
commit 0efb23159e
4 changed files with 155 additions and 125 deletions

View File

@@ -83,6 +83,13 @@ struct paint_string_struct {
uint8 *y_offsets; // 0x1A
};
typedef struct sprite_bb {
uint32 sprite_id;
rct_xyz16 offset;
rct_xyz16 bb_offset;
rct_xyz16 bb_size;
} sprite_bb;
enum PAINT_STRUCT_FLAGS {
PAINT_STRUCT_FLAG_IS_MASKED = (1 << 0)
};