summaryrefslogtreecommitdiff
path: root/strings.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'strings.cpp')
-rw-r--r--strings.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/strings.cpp b/strings.cpp
new file mode 100644
index 0000000..814a52f
--- /dev/null
+++ b/strings.cpp
@@ -0,0 +1,12 @@
+global_variable bool32 Hacko = false;
+global_variable int32 EffectSel = -1;
+
+internal int
+EffectConsoleCallback(ImGuiInputTextCallbackData* data)
+{
+ if (data->EventFlag == ImGuiInputTextFlags_CallbackCompletion)
+ {
+ Hacko = true;
+ }
+ return 0;
+}