summaryrefslogtreecommitdiff
path: root/tracker/AdminServer/ban.h
diff options
context:
space:
mode:
Diffstat (limited to 'tracker/AdminServer/ban.h')
-rw-r--r--tracker/AdminServer/ban.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/tracker/AdminServer/ban.h b/tracker/AdminServer/ban.h
new file mode 100644
index 0000000..0b9befc
--- /dev/null
+++ b/tracker/AdminServer/ban.h
@@ -0,0 +1,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