using System;
namespace RGB.NET.Core
{
///
/// Contains a list of different device device update modes.
///
[Flags]
public enum DeviceUpdateMode
{
///
/// Represents nothing.
///
None = 0,
///
/// Represents a mode which updates the leds of the device.
///
Sync = 1 << 0,
///
/// Represents a mode which reads the color of the leds of the device.
/// This isn't supported by all devices!
///
SyncBack = 1 << 1,
///
/// Represents all update modes.
///
NoUpdate = 1 << 0xFF
}
}