summaryrefslogtreecommitdiff
path: root/blits.h
blob: 6ac7dbd9f4d06b81dc27381181d343e1c90e64ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef BLITS_H
#define BLITS_H

#include <SDL/SDL.h>
#include "players.h"
#include "entry.h"

void display_incr(SURFACES *, POSITIONS *, struct chr_t *target,
        unsigned int incr, SDL_Color color);

void blit_team(struct team_t *team);
void blit_character(struct chr_t *chr);

void update_selected_target(SURFACES *, POSITIONS *, struct target_t *target);
void update_list_entries(SURFACES *, POSITIONS *,
        const struct entry_t *entries, int cnt, int selected);

#endif /* BLITS_H */