source-engine/tracker/AdminServer/Player.h

34 lines
661 B
C
Raw Normal View History

2020-04-22 16:56:21 +00:00
//========= 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