This header isn't used by anything and it hasn't been updated in 2 years...

This commit is contained in:
Ben Anderson
2005-03-13 16:23:55 +00:00
parent acbc1ee8bf
commit 1ac1265e10
-24
View File
@@ -1,24 +0,0 @@
#ifndef NETGAMESTATE_H
#define NETGAMESTATE_H
#define MAX_PLAYERS 8
#define MAX_NAME_LENGTH 32
struct NetPlayerState
{
char name[MAX_NAME_LENGTH];
float score;
int combo;
bool bReady;
};
struct NetGameState
{
int num_players;
NetPlayerState player[MAX_PLAYERS];
};
#endif