1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2024-11-22 13:50:14 +00:00
msfs-popout-panel-manager/DomainModel/Profile/PanelType.cs

17 lines
383 B
C#
Raw Normal View History

2023-07-12 22:41:31 +00:00
namespace MSFSPopoutPanelManager.DomainModel.Profile
{
public enum PanelType
{
PopOutManager = 0,
BuiltInPopout = 1,
CustomPopout = 2,
FlightSimMainWindow = 3,
HudBarWindow = 4,
MultiMonitorWindow = 5,
PanelSourceWindow = 6,
StatusMessageWindow = 7,
2023-07-23 05:13:23 +00:00
RefocusDisplay = 8,
2023-07-12 22:41:31 +00:00
Unknown = 100
}
}