78static proto void PlotLive(string label, int sizeX, int sizeY, float val, int timeStep = 100, int historySize = 30, int color = 0xFFFFFFFF);
79static proto void PlotLiveClamped(string label, int sizeX, int sizeY, float val, float yMin, float yMax, int timeStep = 100, int historySize = 30, int color = 0xFFFFFFFF);
80static proto void Check(string label, out bool checked);
81static proto void Combo(string label, out int selection, TStringArray elems);
82static proto void List(string label, out int selection, TStringArray elems);
83static proto void SliderFloat(string label, out float value, float min, float max, int pxWidth = 150);
84static proto void Spacer(int height);
85static proto void Panel(string label, int width, int height, int color = 0xaa555555);
86static proto bool Button(string txt, int minWidth = 0);
87static proto void Image(string label, ResourceName imgPath, int width, int height);
88static proto void InputText(string txt, out string value, int pxWidth = 150);
89static proto void InputInt(string txt, out int value, int pxWidth = 150);
90static proto void InputFloat(string txt, out float value, int pxWidth = 150);
91static proto void BeginCleanupScope();
92static proto void EndCleanupScope();
93static proto void Begin(string windowTitle, float x = 0, float y = 0);