1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2025-02-18 09:24:29 +01:00
msfs-popout-panel-manager/Model/PanelType.cs

13 lines
228 B
C#
Raw Normal View History

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