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.
22 lines
313 B
22 lines
313 B
// |
|
// 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
|
|
|