2015-06-15 19:23:57 +03:00
|
|
|
//
|
|
|
|
// imgui_impl_ios.h
|
|
|
|
// imguiex
|
|
|
|
//
|
|
|
|
// Joel Davis (joeld42@gmail.com)
|
|
|
|
//
|
|
|
|
|
2015-07-08 06:35:09 +03:00
|
|
|
#pragma once
|
2015-06-15 19:23:57 +03:00
|
|
|
|
|
|
|
#include <Foundation/Foundation.h>
|
|
|
|
#include <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
@interface ImGuiHelper : NSObject
|
|
|
|
|
|
|
|
- (id) initWithView: (UIView *)view;
|
|
|
|
|
|
|
|
- (void)connectServer: (NSString*)serverName;
|
|
|
|
|
|
|
|
- (void)render;
|
|
|
|
- (void)newFrame;
|
|
|
|
|
|
|
|
@end
|