Init commit
This commit is contained in:
commit
83e6c9e1f0
41 changed files with 1455 additions and 0 deletions
17
code-samples/frogger/inc/frog_frontend.h
Normal file
17
code-samples/frogger/inc/frog_frontend.h
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
#ifndef FROGGER_FRONTEND_H
|
||||
#define FROGGER_FRONTEND_H
|
||||
|
||||
#include <string.h>
|
||||
#include "defines.h"
|
||||
#include "objects.h"
|
||||
|
||||
void print_overlay(void);
|
||||
void print_rectangle(int top_y, int bottom_y, int left_x, int right_x);
|
||||
void print_stats(game_stats_t *stats);
|
||||
void print_board(board_t *game, player_pos *frog);
|
||||
void print_cars(board_t *game);
|
||||
void print_finished(board_t *game);
|
||||
void print_banner(game_stats_t *stats);
|
||||
int read_banner(game_stats_t *stats, banner_t *banner);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue