1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2025-02-16 16:34:28 +01:00
msfs-popout-panel-manager/DomainModel/Profile/PanelType.cs

17 lines
383 B
C#
Raw Normal View History

2023-07-13 00:41:31 +02: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 07:13:23 +02:00
RefocusDisplay = 8,
2023-07-13 00:41:31 +02:00
Unknown = 100
}
}