mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-11 10:38:20 +00:00
14 lines
300 B
C++
14 lines
300 B
C++
/* copyright (c) 2007 magnus auvinen, see licence.txt for more info */
|
|
#ifndef GAME_MAPRES_COL_H
|
|
#define GAME_MAPRES_COL_H
|
|
|
|
#include <base/vmath.hpp>
|
|
|
|
int col_init();
|
|
int col_is_solid(int x, int y);
|
|
int col_width();
|
|
int col_height();
|
|
bool col_intersect_line(vec2 pos0, vec2 pos1, vec2 *out);
|
|
|
|
#endif
|