12 lines
229 B
C
12 lines
229 B
C
|
#ifndef C_INDEX_H_INCLUDED
|
||
|
#define C_INDEX_H_INCLUDED
|
||
|
|
||
|
#include "balls.h"
|
||
|
|
||
|
void c_index_build();
|
||
|
void c_index_check_collisions(void (*collision)(struct ball *, struct ball *));
|
||
|
int c_index_init();
|
||
|
void c_index_destroy();
|
||
|
|
||
|
#endif
|