ddnet/src/game/mapres_col.h

14 lines
288 B
C
Raw Normal View History

2007-11-25 19:42:40 +00:00
/* copyright (c) 2007 magnus auvinen, see licence.txt for more info */
#include <game/vmath.h>
2007-05-22 15:03:32 +00:00
struct mapres_collision
{
int width;
int height;
int data_index;
};
int col_init(int dividor);
int col_check_point(int x, int y);
bool col_intersect_line(vec2 pos0, vec2 pos1, vec2 *out);