Move over script and tools

This commit is contained in:
Such Meme, Many Skill
2020-03-18 12:18:39 +01:00
parent c60eb4b722
commit ff618bc285
10 changed files with 67 additions and 44 deletions

View File

@@ -0,0 +1,11 @@
#pragma once
#define strcmpcheck(x, y) (!strcmp(x, y))
typedef void (*part_handler)();
typedef struct _script_parts {
char name[11];
part_handler handler;
short arg_amount;
} script_parts;
void ParseScript(char* path);