diff options
Diffstat (limited to 'inc/cub3d_structs.h')
-rw-r--r-- | inc/cub3d_structs.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/inc/cub3d_structs.h b/inc/cub3d_structs.h index 66686eb..f5c295c 100644 --- a/inc/cub3d_structs.h +++ b/inc/cub3d_structs.h @@ -47,6 +47,15 @@ typedef struct s_rgb int16_t b; } t_rgb; +typedef struct s_sprite +{ + int32_t s_h; + int32_t s_w; + int32_t s_start_x; + int32_t s_start_y; + int32_t s_tex_y; +} t_sprite; + typedef struct s_player { float pos_x; |