From 9d08026e70c3a474182a7b76c25fd9cf53abdf57 Mon Sep 17 00:00:00 2001 From: Aleksey Veresov Date: Tue, 2 Mar 2021 18:19:35 +0300 Subject: Fullscreen, etc... --- src/body.h | 43 +++++++++++++++++++++---------------------- 1 file changed, 21 insertions(+), 22 deletions(-) (limited to 'src/body.h') diff --git a/src/body.h b/src/body.h index 33cab2f..1204c9c 100644 --- a/src/body.h +++ b/src/body.h @@ -1,33 +1,32 @@ #ifndef TT_INCLUDED_BODY #define TT_INCLUDED_BODY - -enum { colact_grib = 1, - colact_gulag, - colact_instgulag, - colact_key, - colact_door }; +enum { + colact_grib = 1, + colact_gulag, + colact_instgulag, + colact_key, + colact_door +}; typedef struct tt_body { - int x; - int y; - int xrem; - int yrem; - int xvel; - int yvel; - int txrrow; - int txrcol; - int rem; - int anim; - int rate; - int collision_act; + int x; + int y; + int xrem; + int yrem; + int xvel; + int yvel; + int txrrow; + int txrcol; + int rem; + int anim; + int rate; + int collision_act; char *msg; - int msglen; - int isdoor; + int msglen; + int isdoor; } tt_body; - void tt_body_move(int d); - #endif -- cgit v1.2.3