mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-11 02:28:18 +00:00
13 lines
217 B
C
13 lines
217 B
C
#include <game/vmath.h>
|
|
|
|
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);
|