blob: 8f4a61cc1512e8cbbca5580e0c595ca832fd55c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef BOAR_H
#define BOAR_H
typedef struct {
int id;
int hp;
double x, y;
double hsp;
double imageIndex;
int blink;
int dir;
int state;
int timer;
} Boar;
void createBoar(int x, int y);
#endif
|