HUDManager/HUD Manager/Structs/VisibilityBits.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

10 lines
164 B
C#
Executable File

using System;
namespace HUD_Manager.Structs {
[Flags]
public enum VisibilityFlags : byte {
Keyboard = 1 << 0,
Gamepad = 1 << 1,
}
}