mirror of
https://github.com/celisej567/source-engine.git
synced 2026-01-04 18:09:53 +03:00
1
This commit is contained in:
33
tracker/AdminServer/Player.h
Normal file
33
tracker/AdminServer/Player.h
Normal file
@@ -0,0 +1,33 @@
|
||||
//========= 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
|
||||
Reference in New Issue
Block a user