aboutsummaryrefslogtreecommitdiffstats
path: root/inc
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--inc/cub3d.h1
-rw-r--r--inc/cub3d_structs.h4
2 files changed, 4 insertions, 1 deletions
diff --git a/inc/cub3d.h b/inc/cub3d.h
index 8eebc00..24ea92a 100644
--- a/inc/cub3d.h
+++ b/inc/cub3d.h
@@ -93,5 +93,6 @@ void ft_music(t_cub *cl);
void ft_calc_sprite(t_cub *cl);
void ft_calc_sprite_norme(t_cub *cl);
void ft_draw_sprite(t_cub *cl);
+void ft_get_sprite_spawn(t_cub *cl);
# endif
diff --git a/inc/cub3d_structs.h b/inc/cub3d_structs.h
index a173e8c..91a1ee9 100644
--- a/inc/cub3d_structs.h
+++ b/inc/cub3d_structs.h
@@ -50,6 +50,8 @@ typedef struct s_rgb
typedef struct s_sprite
{
int32_t s_screen_x;
+ int32_t x;
+ int32_t y;
int32_t s_pos_x;
int32_t s_pos_y;
double s_x;
@@ -137,7 +139,7 @@ typedef struct s_cub
struct s_rgb f_rgb;
struct s_rgb c_rgb;
struct s_img tlist[5];
- struct s_sprite sp_list;
+ struct s_sprite sprites;
} t_cub;
# endif