iOS example: shallow tweaks and fixes (untested)

This commit is contained in:
ocornut
2015-07-07 21:35:09 -06:00
parent eee6dab226
commit fb27360ea8
7 changed files with 32 additions and 55 deletions
+3 -6
View File
@@ -2,13 +2,12 @@
// debug_hud.h
// imguiex
#ifndef __imguiex__debug_hud__
#define __imguiex__debug_hud__
#pragma once
typedef struct DebugHUD
{
int show_test_window;
int show_example_window;
bool show_test_window;
bool show_example_window;
float rotation_speed;
float cubeColor1[4];
float cubeColor2[4];
@@ -24,5 +23,3 @@ void DebugHUD_DoInterface( DebugHUD *hud );
#if __cplusplus
}
#endif
#endif /* defined(__imguiex__debug_hud__) */