1
0
mirror of synced 2024-07-01 03:27:40 +00:00
MassiveKnob/Windows/MassiveKnob.Plugin.EmulatorDevice/MassiveKnobEmulatorDevicePlugin.cs
Mark van Renswoude 28c25c8b43 Implemented OSD
Implemented mute/unmute input and output actions
Changed MockDevice to EmulatorDevice with UI for easier testing
2021-02-24 19:35:01 +01:00

21 lines
806 B
C#

using System;
using System.Collections.Generic;
namespace MassiveKnob.Plugin.EmulatorDevice
{
[MassiveKnobPlugin]
public class MassiveKnobEmulatorDevicePlugin : IMassiveKnobDevicePlugin
{
public Guid PluginId { get; } = new Guid("85f04232-d70f-494c-94a2-41452591ffb3");
public string Name { get; } = "Mock Device";
public string Description { get; } = "Emulates the actual device but does not communicate with anything.";
public string Author { get; } = "Mark van Renswoude <mark@x2software.net>";
public string Url { get; } = "https://www.github.com/MvRens/MassiveKnob/";
public IEnumerable<IMassiveKnobDevice> Devices { get; } = new IMassiveKnobDevice[]
{
new EmulatorDevice.Devices.EmulatorDevice()
};
}
}