StreamDeckSharp/OpenMacroBoard.SDK/DeviceContext.cs
2026-08-03 22:34:16 +02:00

20 lines
506 B
C#

using OpenMacroBoard.SDK.Internals;
namespace OpenMacroBoard.SDK
{
/// <summary>
/// A collection of <see cref="IDeviceContext"/> released methods.
/// </summary>
public static class DeviceContext
{
/// <summary>
/// Creates a new device context (without any listeners).
/// </summary>
/// <returns>A new device context.</returns>
public static IDeviceContext Create()
{
return new DeviceContextInternal();
}
}
}