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.

19 lines
256 B

#ifndef THINGS_H
#define THINGS_H
#include "system.h"
void things_create (void);
void things_twinkle (void);
void things_display (uint8_t tick);
bool things_killed_p (void);
void monster_move (int8_t dx, int8_t dy);
void things_move (void);
#endif