diff options
Diffstat (limited to 'main.h')
-rw-r--r-- | main.h | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -0,0 +1,11 @@ +#ifndef MAIN_H_ +#define MAIN_H_ + +#include "player.h" +#include <SDL2/SDL_ttf.h> + +void execute_actions(struct Player *player, int *action_states, float delta); +void render_text(char *text, SDL_Rect dest, TTF_Font *Sans, SDL_Renderer *renderer); +double current_sdl_time_in_seconds(); + +#endif // MAIN_H_ |