home · contact · privacy
Had forgotten to actually add the new library.
[plomrogue] / src / map_object_actions.h
1 #ifndef MAP_OBJECT_ACTIONS_H
2 #define MAP_OBJECT_ACTIONS_H
3
4 #include "yx_uint16.h"
5
6 struct World;
7 struct Map;
8 struct Monster;
9
10 extern char is_passable (struct Map *, struct yx_uint16);
11 extern void move_monster (struct World *, struct Monster *);
12 extern void move_player (struct World *, char);
13 extern void player_wait(struct World *);
14
15 #endif