summaryrefslogtreecommitdiff
path: root/loader/ui_dropdown_item.h
diff options
context:
space:
mode:
Diffstat (limited to 'loader/ui_dropdown_item.h')
-rw-r--r--loader/ui_dropdown_item.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/loader/ui_dropdown_item.h b/loader/ui_dropdown_item.h
deleted file mode 100644
index 9ffa60d..0000000
--- a/loader/ui_dropdown_item.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#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