This commit is contained in:
Arisotura
2023-03-24 21:16:32 +01:00
parent dbf80435a9
commit 6d3534bc3d
4 changed files with 118 additions and 8 deletions

View File

@ -42,6 +42,7 @@ struct Player
int ID;
char Name[32];
int Status; // 0=no player 1=normal 2=host 3=connecting
u32 Address;
};
}
@ -129,6 +130,9 @@ void DeInit();
void StartHost(const char* player, int port);
void StartClient(const char* player, const char* host, int port);
void StartMirror(const Player* player);
u32 PlayerAddress(int id);
void StartGame();