1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2025-02-16 16:34:28 +01:00
msfs-popout-panel-manager/SimconnectAgent/Enums.cs

32 lines
656 B
C#
Raw Normal View History

2023-07-13 00:41:31 +02:00
namespace MSFSPopoutPanelManager.SimConnectAgent
2022-07-23 21:23:32 +02:00
{
2024-02-28 03:44:21 +01:00
public enum DataDefinition
2022-07-23 21:23:32 +02:00
{
2023-07-13 00:41:31 +02:00
REQUIRED_DEFINITION = 0,
HUDBAR_DEFINITION,
2024-02-28 03:44:21 +01:00
WRITABLE_TRACK_IR_DEFINITION,
WRITABLE_COCKPIT_CAMERA_ZOOM_DEFINITION,
WRITABLE_CAMERA_REQUEST_ACTION_DEFINITION,
WRITABLE_CAMERA_VIEW_TYPE_INDEX_0_DEFINITION,
WRITABLE_CAMERA_VIEW_TYPE_INDEX_1_DEFINITION,
2023-07-13 00:41:31 +02:00
NA
2022-07-23 21:23:32 +02:00
}
2024-02-28 03:44:21 +01:00
public enum DataRequest
2022-07-23 21:23:32 +02:00
{
2023-07-13 00:41:31 +02:00
REQUIRED_REQUEST = 0,
HUDBAR_REQUEST,
NA
2022-07-23 21:23:32 +02:00
}
public enum NotificationGroup
{
GROUP0
}
2022-08-02 17:51:28 +02:00
public enum SystemStateRequestId
{
2024-02-28 03:44:21 +01:00
AIRCRAFT_PATH
2022-08-02 17:51:28 +02:00
}
2022-07-23 21:23:32 +02:00
}