mirror of
https://github.com/ocornut/imgui.git
synced 2024-12-13 12:59:02 +08:00
27 lines
424 B
C
27 lines
424 B
C
|
//
|
||
|
// imgui_impl_ios.h
|
||
|
// imguiex
|
||
|
//
|
||
|
// Joel Davis (joeld42@gmail.com)
|
||
|
//
|
||
|
|
||
|
#ifndef __imguiex__imgui_impl_ios__
|
||
|
#define __imguiex__imgui_impl_ios__
|
||
|
|
||
|
#include <Foundation/Foundation.h>
|
||
|
#include <UIKit/UIKit.h>
|
||
|
|
||
|
@interface ImGuiHelper : NSObject
|
||
|
|
||
|
- (id) initWithView: (UIView *)view;
|
||
|
|
||
|
- (void)connectServer: (NSString*)serverName;
|
||
|
|
||
|
- (void)render;
|
||
|
- (void)newFrame;
|
||
|
|
||
|
@end
|
||
|
|
||
|
|
||
|
#endif /* defined(__imguiex__imgui_impl_ios__) */
|