summaryrefslogtreecommitdiff
path: root/csgo-loader/csgo-client/UserExperience/MoneybotShared/ui_dropdown_item.h
diff options
context:
space:
mode:
Diffstat (limited to 'csgo-loader/csgo-client/UserExperience/MoneybotShared/ui_dropdown_item.h')
-rw-r--r--csgo-loader/csgo-client/UserExperience/MoneybotShared/ui_dropdown_item.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/csgo-loader/csgo-client/UserExperience/MoneybotShared/ui_dropdown_item.h b/csgo-loader/csgo-client/UserExperience/MoneybotShared/ui_dropdown_item.h
new file mode 100644
index 0000000..88f7d4b
--- /dev/null
+++ b/csgo-loader/csgo-client/UserExperience/MoneybotShared/ui_dropdown_item.h
@@ -0,0 +1,15 @@
+#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;
+ };
+ }
+} \ No newline at end of file