HUDManager/HUD Manager/Structs/Options/TargetBarOptions.cs
Anna Clemens 8941d2f8da
feat: add element options and fix ctd
Prevent changing layouts while the Character Configuration window is open.

Also fix visibility to show both keyboard and gamepad checkboxes.
2021-03-11 14:14:34 -05:00

15 lines
373 B
C#
Executable File

namespace HUD_Manager.Structs.Options {
public class TargetBarOptions {
private readonly byte[] _options;
public bool ShowIndependently {
get => this._options[0] == 1;
set => this._options[0] = value ? 1 : 0;
}
public TargetBarOptions(byte[] options) {
this._options = options;
}
}
}