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

12
include/gravity/core.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef __GRAVITY_CORE_H
#define __GRAVITY_CORE_H
// === STRUCT DEFINITIONS === //
typedef struct GravityOpaqueModule* GravityModule;
// ========================== //
// === FUNCTION DEFINITIONS === //
GravityModule gravityCreateModule();
// ============================ //
#endif