aboutsummaryrefslogtreecommitdiff
path: root/spawner.h
blob: 65633c5dd489c0d3065432a78535507eeabd56ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef spawner_h
#define spawner_h

struct World;

int new_spawner(
	struct World* world,
	int x,
	int y
);

#endif