diff options
Diffstat (limited to 'src/game/mapres_col.h')
| -rw-r--r-- | src/game/mapres_col.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/game/mapres_col.h b/src/game/mapres_col.h new file mode 100644 index 00000000..2afad439 --- /dev/null +++ b/src/game/mapres_col.h @@ -0,0 +1,10 @@ + +struct mapres_collision +{ + int width; + int height; + int data_index; +}; + +int col_init(int dividor); +int col_check_point(int x, int y); |