10 lines
154 B
C
10 lines
154 B
C
#ifndef SCROLL_H
|
|
#define SCROLL_H
|
|
int scroll_x;
|
|
int scroll_y;
|
|
|
|
int scrolled_x(int x);
|
|
int scrolled_y(int y);
|
|
char scrolled_readmap(int x, int y);
|
|
|
|
#endif
|