css_enhanced_waf/tracker/AdminServer/Player.h
FluorescentCIAAfricanAmerican 3bf9df6b27 1
2020-04-22 12:56:21 -04:00

33 lines
661 B
C

//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================
#ifndef PLAYER_H
#define PLAYER_H
#ifdef _WIN32
#pragma once
#endif
#include <VGUI_ListPanel.h>
//-----------------------------------------------------------------------------
// Purpose: Data describing a single player
//-----------------------------------------------------------------------------
typedef struct
{
char name[100];
int ping;
int userid;
char authid[20];
int loss;
int frags;
float time;
char addr[4];
} Players_t;
#endif // PLAYER_H