mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 10:08:31 +00:00
16 lines
201 B
C#
16 lines
201 B
C#
using System;
|
|
|
|
namespace RGB.NET.Core
|
|
{
|
|
[Flags]
|
|
public enum DeviceUpdateMode
|
|
{
|
|
None = 0,
|
|
|
|
Sync = 1 << 0,
|
|
SyncBack = 1 << 1,
|
|
|
|
NoUpdate = 1 << 0xFF
|
|
}
|
|
}
|