#ifndef PAC_H_SENTRY #define PAC_H_SENTRY #include "ghosts.h" enum { max_live = 3, pac_y = 22, pac_x = 14 }; struct pacman { char lives; unsigned char points_eaten; struct coordinates position; enum movement_direction direction; }; void initialize_pac(struct pacman *pac); void change_pac_direction(game_space field, struct pacman *pac, int key, enum movement_direction *stored_direction); void check_remaining_direction(game_space field, struct pacman *pac, enum movement_direction *stored_direction); void make_pac_move(game_space field, struct pacman *pac); #endif