2015-06-15 16:23:57 +00:00
|
|
|
//
|
|
|
|
// debug_hud.h
|
|
|
|
// imguiex
|
|
|
|
|
2015-07-08 03:35:09 +00:00
|
|
|
#pragma once
|
2015-06-15 16:23:57 +00:00
|
|
|
|
|
|
|
typedef struct DebugHUD
|
|
|
|
{
|
2017-12-24 17:16:22 +00:00
|
|
|
bool show_demo_window;
|
2018-01-30 23:16:44 +00:00
|
|
|
bool show_another_window;
|
2015-06-15 16:23:57 +00:00
|
|
|
float rotation_speed;
|
|
|
|
float cubeColor1[4];
|
|
|
|
float cubeColor2[4];
|
2018-02-05 02:47:08 +00:00
|
|
|
float clearColor[4];
|
2015-06-15 16:23:57 +00:00
|
|
|
} DebugHUD;
|
|
|
|
|
|
|
|
#if __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2018-01-30 23:16:44 +00:00
|
|
|
void DebugHUD_InitDefaults(DebugHUD *hud);
|
|
|
|
void DebugHUD_DoInterface(DebugHUD *hud);
|
2015-06-15 16:23:57 +00:00
|
|
|
|
|
|
|
#if __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|