17 lines
451 B
C++
17 lines
451 B
C++
|
#include "sd_sacd.h"
|
||
|
|
||
|
int SC_SACD_AABB_Box_Collision(const SC_SACD_AABB_Box *a,
|
||
|
const SC_SACD_AABB_Box *b) {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int SC_SACD_Generic_Box_Collision(const SC_SACD_Generic_Box *a,
|
||
|
const SC_SACD_Generic_Box *b) {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int SC_SACD_AABB_Generic_Box_collision(const SC_SACD_AABB_Box *a,
|
||
|
const SC_SACD_Generic_Box *b) {
|
||
|
return 0;
|
||
|
}
|