Initial commit

This commit is contained in:
2025-03-31 18:05:17 +02:00
commit 336ef95c3f
10 changed files with 197 additions and 0 deletions

18
mods/mod_b.c Normal file
View File

@@ -0,0 +1,18 @@
#include "haxcc.h"
#include <stdio.h>
static int mod_b_init(void) {
printf("top kek MODB!\n");
return 0;
}
static int mod_b_done(void) {
printf("MODB do be done!\n");
return 0;
}
HAX_MOD(mod_b) = {
.init = mod_b_init,
.done = mod_b_done
};