mirror of
https://github.com/Drezil/imgui.git
synced 2024-11-15 17:37:00 +00:00
23 lines
313 B
Objective-C
23 lines
313 B
Objective-C
//
|
|
// imgui_impl_ios.h
|
|
// imguiex
|
|
//
|
|
// Joel Davis (joeld42@gmail.com)
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include <Foundation/Foundation.h>
|
|
#include <UIKit/UIKit.h>
|
|
|
|
@interface ImGuiHelper : NSObject
|
|
|
|
- (id) initWithView: (UIView *)view;
|
|
|
|
- (void)connectServer: (NSString*)serverName;
|
|
|
|
- (void)render;
|
|
- (void)newFrame;
|
|
|
|
@end
|