summaryrefslogtreecommitdiff
path: root/strings.cpp
blob: 814a52f984ed9f27f95825f2fe036855d27e24af (plain)
1
2
3
4
5
6
7
8
9
10
11
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;
}