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/player.h | 28 ++++++++++++---------------- 1 file changed, 12 insertions(+), 16 deletions(-) (limited to 'src/player.h') diff --git a/src/player.h b/src/player.h index b6bb697..e531b16 100644 --- a/src/player.h +++ b/src/player.h @@ -1,24 +1,22 @@ #ifndef TAKETHIS_INCLUDED_PLAYER #define TAKETHIS_INCLUDED_PLAYER - #include "room.h" - typedef struct tt_player { tt_room *room; - int xwalk; - int ywalk; - int x; - int y; - int xrem; - int yrem; - int variant; - int rem; - int money; - int keys[2]; - int tobein_gulag; - int until_gulag; + int xwalk; + int ywalk; + int x; + int y; + int xrem; + int yrem; + int variant; + int rem; + int money; + int keys[2]; + int tobein_gulag; + int until_gulag; int lenin_pos; int lenin_pos_rem; @@ -27,10 +25,8 @@ typedef struct tt_player { int lenin_rem; } tt_player; - void tt_player_walk(int delta); void tt_player_draw(); - #endif -- cgit v1.2.3