From 5a36d153a274978dcf18a9ceda28929f7998a562 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Sat, 20 Mar 2021 16:16:21 -0400 Subject: db_game_play(), db_level_play(): New stub funcs --- (limited to 'src/game.h') diff --git a/src/game.h b/src/game.h index 8065105..3e6f4b2 100644 --- a/src/game.h +++ b/src/game.h @@ -20,6 +20,8 @@ #ifndef DB_GAME_H_ #define DB_GAME_H_ +#include + struct db_game; int db_games_find(const char *games_dir, struct db_game ***games); @@ -27,6 +29,7 @@ const char *db_game_get_name(struct db_game *game) __attribute__((__pure__)); const char *db_game_get_desc(struct db_game *game) __attribute__((__pure__)); +int db_game_play(SDL_Renderer *renderer, struct db_game *game); void db_game_free(struct db_game *game); #endif /* DB_GAME_H_ */ -- cgit v0.9.1