summaryrefslogtreecommitdiff
path: root/src/player.h
blob: 80f8df93794fb479b58e8d7d6588ab3e3fecfbc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef OXEN_PLAYER_H
#define OXEN_PLAYER_H

#define MAX_PLAYER_NAME_LENGTH	10
#define MAX_PLAYERS 10

#include <stdint.h>

struct player_list
{
	uint8_t count;
	char* names[MAX_PLAYERS];
};

#endif // OXEN_PLAYER_H