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/SimconnectAgent/Enums.cs
2023-08-15 23:41:14 -04:00

29 lines
547 B
C#

namespace MSFSPopoutPanelManager.SimConnectAgent
{
public enum DATA_DEFINITION
{
REQUIRED_DEFINITION = 0,
HUDBAR_DEFINITION,
WRITEABLE_TRACKIR_DEFINITION,
WRITEABLE_COCKPITCAMERAZOOM_DEFINITION,
WRITEABLE_CAMERAREQUESTACTION_DEFINITION,
NA
}
public enum DATA_REQUEST
{
REQUIRED_REQUEST = 0,
HUDBAR_REQUEST,
NA
}
public enum NotificationGroup
{
GROUP0
}
public enum SystemStateRequestId
{
AIRCRAFTPATH
}
}