9 lines
169 B
C
9 lines
169 B
C
|
|
#include "include/gravity/core.h"
|
||
|
|
#include <stdio.h>
|
||
|
|
|
||
|
|
int main() {
|
||
|
|
GravityModule module = gravityCreateModule();
|
||
|
|
printf("module: %p\n", module);
|
||
|
|
|
||
|
|
return 0;
|
||
|
|
}
|