summaryrefslogtreecommitdiff
path: root/sourcemod/scripting/include/smlib/menus.inc
diff options
context:
space:
mode:
authoraura <nw@moneybot.cc>2026-02-17 23:42:09 +0100
committeraura <nw@moneybot.cc>2026-02-17 23:42:09 +0100
commit5e2eb7d67ae933b7566f1944d0bb7744da03d586 (patch)
tree054acff1113270a9cd07933df760f3768c1b6853 /sourcemod/scripting/include/smlib/menus.inc
parent341db13a008dc12bb22ceb50452d93d01476308c (diff)
move source stuff to its own folder
Diffstat (limited to 'sourcemod/scripting/include/smlib/menus.inc')
-rw-r--r--sourcemod/scripting/include/smlib/menus.inc37
1 files changed, 0 insertions, 37 deletions
diff --git a/sourcemod/scripting/include/smlib/menus.inc b/sourcemod/scripting/include/smlib/menus.inc
deleted file mode 100644
index 87f253e..0000000
--- a/sourcemod/scripting/include/smlib/menus.inc
+++ /dev/null
@@ -1,37 +0,0 @@
-#if defined _smlib_menus_included
- #endinput
-#endif
-#define _smlib_menus_included
-
-#include <sourcemod>
-#include <smlib/math>
-
-/**
- * Adds an option to a menu with a String display but an integer
- * identifying the option.
- *
- * @param menu Handle to the menu
- * @param value Integer value for the option
- * @param display Display text for the menu
- */
-stock void Menu_AddIntItem(Menu menu, any value, char[] display)
-{
- char buffer[INT_MAX_DIGITS + 1];
- IntToString(value, buffer, sizeof(buffer));
- menu.AddItem(buffer, display);
-}
-
-/**
- * Retrieves an integer-value choice from a menu, where the
- * menu's information strings were created as integers.
- *
- * @param menu Handle to the menu
- * @param param2 The item position selected from the menu.
- * @return Integer choice from the menu, or 0 if the integer could not be parsed.
- */
-stock any Menu_GetIntItem(Menu menu, any param2)
-{
- char buffer[INT_MAX_DIGITS + 1];
- menu.GetItem(param2, buffer, sizeof(buffer));
- return StringToInt(buffer);
-}