diff options
author | salaaad2 <arthurdurant263@gmail.com> | 2020-02-15 13:26:56 +0100 |
---|---|---|
committer | salaaad2 <arthurdurant263@gmail.com> | 2020-02-15 13:26:56 +0100 |
commit | a8b3a2574e0eb07764e51043b523f6459bb3594c (patch) | |
tree | f8b8dc9d36c3df12ecd9681a4f12eed70a6054d4 /inc | |
parent | Tweaked rot_speed (diff) | |
download | 42-cub3d-a8b3a2574e0eb07764e51043b523f6459bb3594c.tar.gz 42-cub3d-a8b3a2574e0eb07764e51043b523f6459bb3594c.tar.bz2 42-cub3d-a8b3a2574e0eb07764e51043b523f6459bb3594c.tar.xz 42-cub3d-a8b3a2574e0eb07764e51043b523f6459bb3594c.tar.zst 42-cub3d-a8b3a2574e0eb07764e51043b523f6459bb3594c.zip |
asdasd
Diffstat (limited to '')
-rw-r--r-- | inc/cub3d_structs.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/inc/cub3d_structs.h b/inc/cub3d_structs.h index eee6188..1bf2bca 100644 --- a/inc/cub3d_structs.h +++ b/inc/cub3d_structs.h @@ -34,6 +34,11 @@ typedef struct s_img int bpp; int sizeline; int endian; + int img_w; + int img_h; + int tex_x; + int tex_y; + } t_img; typedef struct s_rgb @@ -111,6 +116,7 @@ typedef struct s_cub struct s_img img; struct s_rgb f_rgb; struct s_rgb c_rgb; + struct s_img tlist[5]; } t_cub; # endif |