diff --git a/src/main.c b/src/main.c index 82adabf..f53b8f2 100644 --- a/src/main.c +++ b/src/main.c @@ -1,6 +1,10 @@ #include -/* #include */ +/* + * We need: + * __attribute__((constructor)) + * To indicate that this function will be the entry point once injected. + */ __attribute__((constructor)) void load(void) { printf("hl-cheat loaded!\n"); }