// // SCNLayer.h // // Copyright 2012 Apple Inc. All rights reserved. // #import #import /*! @class SCNLayer @abstract A SCNLayer is a layer that can display a SCNScene. */ SCENEKIT_AVAILABLE(10_7, NA) @interface SCNLayer : CAOpenGLLayer { @private id _reserved; } /*! @property scene @abstract Specifies the scene of the receiver */ @property(nonatomic, retain) SCNScene *scene; @end