initial setup

This commit is contained in:
2026-08-02 15:52:44 +10:00
parent 3087bb6f20
commit 87208566fc
8 changed files with 101 additions and 0 deletions

9
test.c Normal file
View File

@@ -0,0 +1,9 @@
#include "include/gravity/core.h"
#include <stdio.h>
int main() {
GravityModule module = gravityCreateModule();
printf("module: %p\n", module);
return 0;
}