home
·
contact
·
privacy
projects
/
plomrogue
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Addendum to previous commit: Added files mentioned but forgotten.
[plomrogue]
/
src
/
map.h
1
#ifndef MAP_H
2
#define MAP_H
3
4
#include "yx_uint16.h"
5
6
struct Player;
7
8
struct Map {
9
struct yx_uint16 size;
10
struct yx_uint16 offset;
11
char * cells; };
12
13
extern struct Map init_map ();
14
extern void map_scroll (struct Map *, char, struct yx_uint16);
15
extern void map_center_player (struct Map *, struct Player *, struct yx_uint16);
16
17
#endif