mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-13 00:58:31 +00:00
30 lines
520 B
C#
30 lines
520 B
C#
using System.Collections.Generic;
|
|
using CUE.NET.Devices.Keyboard.Brushes;
|
|
using CUE.NET.Devices.Keyboard.Keys;
|
|
|
|
namespace CUE.NET.Devices.Keyboard.Effects
|
|
{
|
|
public interface IEffect
|
|
{
|
|
#region Properties & Fields
|
|
|
|
IBrush EffectBrush { get; }
|
|
|
|
IEnumerable<CorsairKey> KeyList { get; }
|
|
|
|
bool IsDone { get; }
|
|
|
|
#endregion
|
|
|
|
#region Methods
|
|
|
|
void Update(float deltaTime);
|
|
|
|
void OnAttach();
|
|
|
|
void OnDetach();
|
|
|
|
#endregion
|
|
}
|
|
}
|