24 lines
519 B
Objective-C
24 lines
519 B
Objective-C
//
|
|
// VROViewGVR.h
|
|
// ViroRenderer
|
|
//
|
|
// Created by Raj Advani on 4/28/16.
|
|
// Copyright © 2016 Viro Media. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <GLKit/GLKit.h>
|
|
#import <UIKit/UIKit.h>
|
|
#import "VROView.h"
|
|
|
|
class VRORendererConfiguration;
|
|
|
|
@interface VROViewGVR : GLKView <VROView>
|
|
|
|
@property (readwrite, nonatomic) BOOL paused;
|
|
@property (readwrite, nonatomic) IBInspectable BOOL testingMode;
|
|
|
|
- (instancetype)initWithFrame:(CGRect)frame config:(VRORendererConfiguration)config;
|
|
|
|
@end
|