Finish m401dll/main.c

This commit is contained in:
gamemasterplc 2024-04-29 10:40:57 -05:00
parent 76690a0d5f
commit 023ce2ee8b
4 changed files with 932 additions and 256 deletions

View file

@ -4,6 +4,7 @@
#include "dolphin/types.h"
#define frandBool() (((s32)frand() & 0x1))
#define frandu8() (((u32)frand() & 0xFF))
#define frand8() (((s32)frand() & 0xFF))
#define frandmods(range) ((s32)frand() % (range))
#define frand16() (((s32)frand() & 0xFFFF))