mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 13:17:49 +00:00
29 lines
616 B
Objective-C
29 lines
616 B
Objective-C
//
|
|
// RBHybridBridge.h
|
|
// RobloxMobile
|
|
//
|
|
// Created by Ariel Lichtin on 2/5/15.
|
|
// Copyright (c) 2015 ROBLOX. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "RBHybridWebViewProtocol.h"
|
|
|
|
@class RBHybridWebView;
|
|
@class RBHybridModule;
|
|
|
|
|
|
@interface RBHybridBridge : NSObject
|
|
|
|
+ (RBHybridBridge*) sharedInstance;
|
|
|
|
-(void)registerWebView:(UIView <RBHybridWebViewProtocol> *)webview;
|
|
-(void)unRegisterWebView:(UIView <RBHybridWebViewProtocol> *)webview;
|
|
|
|
-(RBHybridWebView*)getWebViewForID:(NSString*)webviewID;
|
|
-(RBHybridModule*)getModuleForID:(NSString*)moduleID;
|
|
|
|
@end
|