You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
661 B
34 lines
661 B
5 years ago
|
//========= 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
|