mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-12 16:58:29 +00:00
19 lines
544 B
C#
19 lines
544 B
C#
namespace CUE.NET.Devices.Generic.Enums
|
|
{
|
|
/// <summary>
|
|
/// Contains list of available update modes.
|
|
/// </summary>
|
|
public enum UpdateMode
|
|
{
|
|
/// <summary>
|
|
/// The device will not perform automatic updates. Updates will only occur if <see cref="ICueDevice.Update" /> is called.
|
|
/// </summary>
|
|
Manual,
|
|
|
|
/// <summary>
|
|
/// The device will perform automatic updates at the rate set in <see cref="ICueDevice.UpdateFrequency" />.
|
|
/// </summary>
|
|
Continuous
|
|
}
|
|
}
|