248
249
250
251
252
253
254
255
256
257
258
259
260
|
void annihilate(void);
const char*execute_turn(int key);
const char*init_level(void);
// == game ==
void run_game(void);
// == edit ==
void run_editor(void);
void write_empty_level_set(FILE*);
|
>
|
248
249
250
251
252
253
254
255
256
257
258
259
260
261
|
void annihilate(void);
const char*execute_turn(int key);
const char*init_level(void);
// == game ==
void run_game(void);
void locate_me(int x,int y);
// == edit ==
void run_editor(void);
void write_empty_level_set(FILE*);
|