1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-18 04:23:20 +01:00

Move typedef to header file

This commit is contained in:
qcz
2014-08-20 15:48:53 +02:00
parent cb169952ac
commit 92f0139b5a
2 changed files with 2 additions and 1 deletions

View File

@@ -2188,7 +2188,6 @@ static int game_check_affordability(int cost)
}
static uint32 game_do_command_table[58];
typedef void (GAME_COMMAND_POINTER)(int* eax, int* ebx, int* ecx, int* edx, int* esi, int* edi, int* ebp);
static GAME_COMMAND_POINTER* new_game_command_table[58];
/**

View File

@@ -82,6 +82,8 @@ enum GAME_COMMAND {
GAME_COMMAND_57
};
typedef void (GAME_COMMAND_POINTER)(int* eax, int* ebx, int* ecx, int* edx, int* esi, int* edi, int* ebp);
void game_create_windows();
void game_update();
void game_logic_update();