blob: ea1dbe8e7317bae179b3ce53f65990cd2f2b4f60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef SEAL_H
#define SEAL_H
typedef struct {
int id, hp;
double x, y;
double imageIndex;
int dir, state, timer;
int invincible;
} Seal;
void createSeal(int x, int y);
#endif
|