mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-22 05:40:11 +00:00
16 lines
355 B
C#
16 lines
355 B
C#
|
namespace MSFSPopoutPanelManager.DomainModel.Profile
|
|||
|
{
|
|||
|
public enum PanelType
|
|||
|
{
|
|||
|
PopOutManager = 0,
|
|||
|
BuiltInPopout = 1,
|
|||
|
CustomPopout = 2,
|
|||
|
FlightSimMainWindow = 3,
|
|||
|
HudBarWindow = 4,
|
|||
|
MultiMonitorWindow = 5,
|
|||
|
PanelSourceWindow = 6,
|
|||
|
StatusMessageWindow = 7,
|
|||
|
Unknown = 100
|
|||
|
}
|
|||
|
}
|