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