mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-21 21:30:12 +00:00
17 lines
409 B
C#
17 lines
409 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,
|
|
RefocusDisplay = 8,
|
|
NumPadWindow = 9,
|
|
Unknown = 100
|
|
}
|
|
}
|