2015-06-15 19:23:57 +03:00
|
|
|
//
|
|
|
|
// debug_hud.h
|
|
|
|
// imguiex
|
|
|
|
|
2015-07-08 06:35:09 +03:00
|
|
|
#pragma once
|
2015-06-15 19:23:57 +03:00
|
|
|
|
|
|
|
typedef struct DebugHUD
|
|
|
|
{
|
2015-07-08 06:35:09 +03:00
|
|
|
bool show_test_window;
|
|
|
|
bool show_example_window;
|
2015-06-15 19:23:57 +03:00
|
|
|
float rotation_speed;
|
|
|
|
float cubeColor1[4];
|
|
|
|
float cubeColor2[4];
|
|
|
|
} DebugHUD;
|
|
|
|
|
|
|
|
#if __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void DebugHUD_InitDefaults( DebugHUD *hud );
|
|
|
|
void DebugHUD_DoInterface( DebugHUD *hud );
|
|
|
|
|
|
|
|
#if __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|