diff options
Diffstat (limited to 'inc/cub3d_defines.h')
-rw-r--r-- | inc/cub3d_defines.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/inc/cub3d_defines.h b/inc/cub3d_defines.h index 5a8112b..8b15838 100644 --- a/inc/cub3d_defines.h +++ b/inc/cub3d_defines.h @@ -14,6 +14,31 @@ # define CUB3D_DEFINES_H /* +** ====== RETURN VALUES ====== +*/ + +enum retvals +{ + RET_FINE, + RET_NO_ARGV, + RET_FAILED_STRUCTS, + RET_FAILED_MLX, + RET_MAP_ERROR, + RET_NO_MAP, + RET_READ_ERROR +}; + +/* +** ret vals: +** 1: no argv[1] +** 2: failed structs init +** 3: failed mlx init +** 4: map error +** 5: no map +** 6: read error +*/ + +/* ** ====== KEYS ====== */ |