diff options
author | Olivier Gayot <duskcoder@gmail.com> | 2015-01-08 19:45:03 +0100 |
---|---|---|
committer | Olivier Gayot <duskcoder@gmail.com> | 2015-01-08 19:45:03 +0100 |
commit | bfdf279cac51fe8945e59cd566cba2cb2efcffce (patch) | |
tree | c2310a297cb9d48814009142ea92cc31bd787fee /blits.h | |
parent | fc3baf853b4429cf012f6d77b43d74872dc5ca11 (diff) |
move some functions and headers so that the compilation is quicker
Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
Diffstat (limited to 'blits.h')
-rw-r--r-- | blits.h | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -0,0 +1,16 @@ +#ifndef BLITS_H +#define BLITS_H + +#include <SDL/SDL.h> +#include "players.h" +#include "entry.h" + +void display_incr(SURFACES *surfaces, POSITIONS *positions, struct character_t *target, unsigned int incr, SDL_Color color); + +void blit_team(SURFACES *surfaces, struct team_t *team); + +void blit_character(SURFACES *surfaces, struct character_t *chr); +void update_selected_target(SURFACES *surfaces, POSITIONS *positions, struct character_t *chr); +void update_list_entries(SURFACES *surfaces, POSITIONS *positions, const struct entry_t *entries, int cnt, int selected); + +#endif /* BLITS_H */ |