You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef THINGS_H
|
|
#define THINGS_H
|
|
|
|
#include "system.h"
|
|
|
|
bool things_killed_p (void);
|
|
|
|
void things_create (void);
|
|
|
|
void things_move (void);
|
|
|
|
void things_monster_move (int8_t dx, int8_t dy);
|
|
|
|
void things_monster_toggle (void);
|
|
|
|
#endif
|