aixxe 3b12e00ad1 Move CRC32 definition to separate file.
Signed-off-by: aixxe <me@aixxe.net>
2016-12-20 13:14:21 +00:00

13 lines
311 B
C

#pragma once
typedef struct player_info_s {
char name[MAX_PLAYER_NAME_LENGTH];
int userID;
char guid[SIGNED_GUID_LEN + 1];
uint32_t friendsID;
char friendsName[MAX_PLAYER_NAME_LENGTH];
bool fakeplayer;
bool ishltv;
CRC32_t customFiles[MAX_CUSTOM_FILES];
unsigned char filesDownloaded;
} player_info_t;