blob: 0b9befce035c188d4046ce7c78c3c06719f9b248 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================
#ifndef BAN_H
#define BAN_H
#ifdef _WIN32
#pragma once
#endif
enum Bans { ID, WONID,AUTHID,IP };
//-----------------------------------------------------------------------------
// Purpose: Data describing a single player
//-----------------------------------------------------------------------------
typedef struct
{
char name[20]; // id of the band
float time;
Bans type;
} Bans_t;
#endif // BAN_H
|