namespace Sandbox.VR; /// /// Native helpers for VR /// static partial class VRNative { private struct RenderModelInfo { public List Vertices = new(); public List Indices = new(); public int DiffuseTextureId = 0; public RenderModelInfo() { } } private static RenderModelInfo? GetRenderModelInfo( string renderModelName ) { return null; } private static Texture GetRenderModelTexture( int textureId ) { return null; } internal static Model GetRenderModel( string renderModelName ) { return null; } }