mirror of
https://github.com/ZuneDev/MicrosoftIris.git
synced 2026-07-27 13:13:29 -07:00
10 lines
181 B
C#
10 lines
181 B
C#
using System;
|
|
using Microsoft.Iris.Render.Interop;
|
|
|
|
namespace Microsoft.Iris.Render.Engine;
|
|
|
|
public interface IRenderThreadHandle : IDisposable
|
|
{
|
|
ContextID ContextId { get; }
|
|
}
|