15 lines
198 B
C
15 lines
198 B
C
|
/*
|
||
|
** col.h - <+DESC+>
|
||
|
**
|
||
|
** 2014 - Frank Villaro-Dixon <Frank@Villaro-Dixon.eu>
|
||
|
*/
|
||
|
|
||
|
#ifndef COL_H
|
||
|
#define COL_H
|
||
|
|
||
|
int
|
||
|
has_collision(struct s_game *g, struct s_obstacle o);
|
||
|
|
||
|
#endif /* ndef COL_H */
|
||
|
|