diff options
author | Victor Gamper <victor@wenzeslaus.de> | 2020-06-10 15:35:25 +0200 |
---|---|---|
committer | Victor Gamper <victor@wenzeslaus.de> | 2020-06-10 15:35:25 +0200 |
commit | d1c4f6363aaf5027df7bc8ea471363ef48fba4c0 (patch) | |
tree | 8966ab91b7bdc906a79e7cbab55d33a4a05ea8e6 /catch.h | |
parent | 1c18625cc08e1c1562d18eec55dd17824ea0a99c (diff) | |
download | c-catch-d1c4f6363aaf5027df7bc8ea471363ef48fba4c0.tar.gz c-catch-d1c4f6363aaf5027df7bc8ea471363ef48fba4c0.zip |
Added clouds and "realistic" textures
Diffstat (limited to 'catch.h')
-rw-r--r-- | catch.h | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -19,6 +19,8 @@ #include "chargebar.h" #include "cat_bmp.h" +#include "grass_bmp.h" +#include "cloud1_bmp.h" #define SCREEN_WIDTH 640 #define SCREEN_HEIGHT 480 @@ -31,6 +33,7 @@ #define MAXIMUM_JUMP_FORCE 9 #define BIRD_COUNT 5 +#define CLOUD_COUNT 14 #define BIRD_TYPE_NONE 0 #define BIRD_TYPE_PIDGIN 1 #define BIRD_TYPE_DEAD_PIDGIN 2 @@ -43,6 +46,12 @@ #define TICK_SPEED 20 #define TICKS_PER_SECOND 1000 / TICK_SPEED +#undef PLASTIC_TEXTURES + +struct Cloud { + int x, y, type; +}; + // cat and bird structures struct Cat { int x; |