Files
TegraExplorer/source/tegraexplorer/utils/script.h
Such Meme, Many Skill ff618bc285 Move over script and tools
2020-03-18 12:18:39 +01:00

12 lines
233 B
C

#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);