mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-13 00:58:31 +00:00
15 lines
281 B
C#
15 lines
281 B
C#
using System.Collections.Generic;
|
|
using CUE.NET.Devices.Keyboard.Brushes;
|
|
|
|
namespace CUE.NET.Devices.Keyboard.Keys
|
|
{
|
|
public interface IKeyGroup
|
|
{
|
|
IEnumerable<CorsairKey> Keys { get; }
|
|
|
|
IBrush Brush { get; set; }
|
|
|
|
int ZIndex { get; set; }
|
|
}
|
|
}
|