File: enemy.h

package info (click to toggle)
overgod 1.0-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,880 kB
  • sloc: ansic: 31,576; makefile: 22; sh: 10
file content (15 lines) | stat: -rw-r--r-- 386 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

void init_enemies(void);

int create_enemy(int type, int subtype, int x, int y,
int x_speed, int y_speed, int angle, int carrying_pickup, int special [10],
unsigned char target);

void run_enemies(void);

int hurt_enemy(int e, int hurty, int source, char pulse);

int spawn_enemy(int type, int subtype, int carrying_pickup, int target);

int enemy_sound_pitch(int ec);