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

30 lines
547 B
C#
Raw Normal View History

2023-07-12 22:41:31 +00:00
namespace MSFSPopoutPanelManager.SimConnectAgent
2022-07-23 19:23:32 +00:00
{
2023-07-12 22:41:31 +00:00
public enum DATA_DEFINITION
2022-07-23 19:23:32 +00:00
{
2023-07-12 22:41:31 +00:00
REQUIRED_DEFINITION = 0,
HUDBAR_DEFINITION,
2023-07-30 21:30:47 +00:00
WRITEABLE_TRACKIR_DEFINITION,
WRITEABLE_COCKPITCAMERAZOOM_DEFINITION,
2023-08-16 03:41:14 +00:00
WRITEABLE_CAMERAREQUESTACTION_DEFINITION,
2023-07-12 22:41:31 +00:00
NA
2022-07-23 19:23:32 +00:00
}
public enum DATA_REQUEST
{
2023-07-12 22:41:31 +00:00
REQUIRED_REQUEST = 0,
HUDBAR_REQUEST,
NA
2022-07-23 19:23:32 +00:00
}
public enum NotificationGroup
{
GROUP0
}
2022-08-02 15:51:28 +00:00
public enum SystemStateRequestId
{
AIRCRAFTPATH
}
2022-07-23 19:23:32 +00:00
}