diff options
author | Dobbertin, Niclas <niclas.dobbertin@gmx.de> | 2023-06-24 23:04:23 +0200 |
---|---|---|
committer | Dobbertin, Niclas <niclas.dobbertin@gmx.de> | 2023-06-24 23:04:23 +0200 |
commit | 3422a87bdb087b6d927203e266beb71027779dbe (patch) | |
tree | 3d8381b27c94529c45ad7287695befe3eaa241c5 /main.h |
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_ |