-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForgiveTKMenu.h
More file actions
30 lines (26 loc) · 959 Bytes
/
Copy pathForgiveTKMenu.h
File metadata and controls
30 lines (26 loc) · 959 Bytes
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
29
30
/* ======== Basic Admin tool ========
* Copyright (C) 2004-2007 Erling K. Sæterdal
* No warranties of any kind
*
* License: zlib/libpng
*
* Author(s): Erling K. Sæterdal ( EKS )
* Credits:
* Menu code based on code from CSDM ( http://www.tcwonline.org/~dvander/cssdm ) Created by BAILOPAN
* Adminloading function from Xaphan ( http://www.sourcemod.net/forums/viewtopic.php?p=25807 ) Created by Devicenull
* Helping on misc errors/functions: BAILOPAN,sslice,devicenull,PMOnoTo,cybermind ( most who idle in #sourcemod on GameSurge realy )
* ============================ */
#ifndef _INCLUDE_MENUS_ADMINMENU
#define _INCLUDE_MENUS_ADMINMENU
#include "BATMenu.h"
//extern menuId g_AdminMenu;
class ForgiveTKMenu : public IMenu
{
public:
bool Display(BATMenuBuilder *make, int playerIndex);
MenuSelectionType MenuChoice(player_t player, int option);
private:
void PunishPlayer(int id);
const char *GetPunishmentText();
};
#endif