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/Shared/PanelType.cs

15 lines
269 B
C#
Raw Normal View History

2022-07-23 21:23:32 +02:00
namespace MSFSPopoutPanelManager.Shared
2021-12-14 06:40:07 +01:00
{
public enum PanelType
{
2022-07-23 21:23:32 +02:00
PopOutManager,
2021-12-14 06:40:07 +01:00
BuiltInPopout,
2021-12-20 15:57:33 +01:00
CustomPopout,
2022-07-23 21:23:32 +02:00
FlightSimMainWindow,
2022-07-01 01:53:08 +02:00
MSFSTouchPanel,
2022-07-23 21:23:32 +02:00
MultiMonitorWindow,
2022-07-11 01:58:54 +02:00
WPFWindow,
2022-07-23 21:23:32 +02:00
Unknown
2021-12-14 06:40:07 +01:00
}
}