1
0
mirror of https://github.com/DarthAffe/CUE.NET.git synced 2025-12-13 00:58:31 +00:00
CUE.NET/Devices/Keyboard/Keys/IKeyGroup.cs

13 lines
230 B
C#

using System.Collections.Generic;
using System.Drawing;
namespace CUE.NET.Devices.Keyboard.Keys
{
public interface IKeyGroup
{
IEnumerable<CorsairKey> Keys { get; }
void SetColor(Color color);
}
}