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
2015-09-19 17:54:38 +02:00

16 lines
339 B
C#

using System.Collections.Generic;
using System.Drawing;
namespace CUE.NET.Devices.Keyboard.Keys
{
public interface IKeyGroup
{
//TODO DarthAffe 19.09.2015: This might be not needed/bad
IList<CorsairKey> Keys { get; }
void SetColor(Color color);
void MergeKeys(IKeyGroup groupToMerge);
}
}