From ef3844bf2128fa82f20c5995d1fca66fadba2ce3 Mon Sep 17 00:00:00 2001 From: scratko Date: Wed, 17 Apr 2024 17:00:48 +0300 Subject: Added colors Changed the number of pacman's lives. Fixed clear_or_revert_symbol(). Target hit display. Changed ghost initialization. Clearing ghost positions is moved to the function. Added flag in struct ghost_type (reached_pacman). Changed catching stage. Now eating an energizer resets the counter. --- color_palette.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 color_palette.h (limited to 'color_palette.h') diff --git a/color_palette.h b/color_palette.h new file mode 100644 index 0000000..81ccce8 --- /dev/null +++ b/color_palette.h @@ -0,0 +1,15 @@ +#ifndef COLOR_PALETTE_H_SENTRY +#define COLOR_PALETTE_H_SENTRY + +#include "field.h" +#include "ghosts.h" + +void set_pairs(); +void paint_field_element(int element); +void paint_stats(); +void paint_ghost(enum ghost_color color, int blink); +void paint_pac(); +void paint_hit(); +void reset_attr(); + +#endif -- cgit v1.2.3