You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
25 lines
370 B
25 lines
370 B
// |
|
// debug_hud.h |
|
// imguiex |
|
|
|
#pragma once |
|
|
|
typedef struct DebugHUD |
|
{ |
|
bool show_test_window; |
|
bool show_example_window; |
|
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
|
|
|