Files
deighton-ar/mobile/ios/ViroKit.framework/Headers/VROViewGVR.h
2018-03-27 17:46:15 -07:00

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