summaryrefslogtreecommitdiff
path: root/legacy/loader/ui_dropdown_item.h
diff options
context:
space:
mode:
Diffstat (limited to 'legacy/loader/ui_dropdown_item.h')
-rw-r--r--legacy/loader/ui_dropdown_item.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/legacy/loader/ui_dropdown_item.h b/legacy/loader/ui_dropdown_item.h
new file mode 100644
index 0000000..9ffa60d
--- /dev/null
+++ b/legacy/loader/ui_dropdown_item.h
@@ -0,0 +1,22 @@
+#pragma once
+
+#include "ui_base_item.h"
+
+namespace ui
+{
+ namespace dropdowns
+ {
+ template < typename t = int >
+ struct dropdown_item_t {
+ const char* m_name;
+ t m_value;
+ };
+
+ std::vector< dropdown_item_t< > > games = {
+ { xors( "csgo" ), 1 },
+ { xors( "csgo (beta)" ), 3 },
+ { xors( "tf2" ), 2 },
+ { xors( "gmod (beta)" ), 4 }
+ };
+ }
+} \ No newline at end of file