Tweak_Init

This commit is contained in:
krystalgamer 2024-09-13 19:12:43 +02:00
parent 69630bd99e
commit 81c8da9f18
2 changed files with 13 additions and 2 deletions

View File

@ -1,7 +1,13 @@
#include "tweak.h"
// @SMALLTODO
i16 gGameState[30];
// @Ok
// @Matching
void Tweak_Init(void)
{
printf("Tweak_Init(void)");
gGameState[14] = 1;
gGameState[8] = 0;
gGameState[9] = 0;
gGameState[10] = 0;
}

View File

@ -4,6 +4,11 @@
#define TWEAK_H
#include "export.h"
// @FIXME
// bro wtf is this shit
EXPORT extern i16 gGameState[30];
EXPORT void Tweak_Init(void);
#endif