mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2026-07-13 09:51:05 +00:00
15 lines
No EOL
343 B
C
15 lines
No EOL
343 B
C
#ifndef NETWORK_UTILS_H
|
|
#define NETWORK_UTILS_H
|
|
|
|
#include <stdbool.h>
|
|
#include "network.h"
|
|
|
|
u8 network_global_index_from_local(u8 localIndex);
|
|
u8 network_local_index_from_global(u8 globalIndex);
|
|
|
|
bool network_is_server(void);
|
|
|
|
u8* network_get_player_text_color(u8 localIndex);
|
|
char* network_get_player_text_color_string(u8 localIndex);
|
|
|
|
#endif |