Implement & link JoyBoot.c

This commit is contained in:
Cuyler36
2023-06-01 17:20:41 -04:00
parent 7294ce4220
commit 5ff38da9d4
20 changed files with 2277 additions and 1 deletions
+3
View File
@@ -22,6 +22,9 @@ typedef struct gameAlloc_s {
} GameAlloc;
extern void* gamealloc_malloc(GameAlloc* gamealloc, size_t size);
extern void gamealloc_free(GameAlloc* gamealloc, void* ptr);
extern void gamealloc_cleanup(GameAlloc* gamealloc);
extern void gamealloc_init(GameAlloc* gamealloc);
#ifdef __cplusplus
};