1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2024-10-16 14:10:45 +00:00
msfs-popout-panel-manager/Shared/PanelType.cs

15 lines
269 B
C#
Raw Normal View History

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