using CUE.NET.Effects; namespace CUE.NET.Devices.Generic.Enums { /// /// Contains list of available update modes. /// public enum UpdateMode { /// /// The device will not perform automatic updates. Updates will only occur if is called. /// Manual, /// /// The device will perform automatic updates at the rate set in . /// Continuous } }