This commit is contained in:
2025-10-30 18:08:11 -07:00
commit ad2fbc709c
17 changed files with 1050 additions and 0 deletions

20
source/commands.h Normal file
View File

@@ -0,0 +1,20 @@
#ifndef COMMANDS_H
#define COMMANDS_H
typedef void (*nomi_command_func)(void* ptr);
struct nomi_command {
nomi_command_func func;
const char* command;
};
void InitCommands();
void AddCommand(nomi_command_func func, const char* command);
unsigned char CommandRun(char* command, int size);
#endif // !COMMANDS_H