summaryrefslogtreecommitdiff
path: root/src/net.h
blob: f29100abcc80134c093cc2bda0bd9f219900b72f (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef OXEN_NET_H
#define OXEN_NET_H

#define MAX_PLAYERS 10

int server_start(const char* port);
int* server_get_players(int serversock, const uint8_t count);
int client_connect_server(const char* host, const char* port);

#endif // OXEN_NET_H