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
2024-03-14 18:50:32 -04:00

34 lines
765 B
C#

namespace MSFSPopoutPanelManager.SimConnectAgent
{
public enum DataDefinition
{
REQUIRED_DEFINITION = 0,
HUDBAR_DEFINITION,
DYNAMICLOD_DEFINITION,
WRITABLE_TRACK_IR_DEFINITION,
WRITABLE_COCKPIT_CAMERA_ZOOM_DEFINITION,
WRITABLE_COCKPIT_CAMERA_STATE_DEFINITION,
WRITABLE_CAMERA_REQUEST_ACTION_DEFINITION,
WRITABLE_CAMERA_VIEW_TYPE_INDEX_0_DEFINITION,
WRITABLE_CAMERA_VIEW_TYPE_INDEX_1_DEFINITION,
NA
}
public enum DataRequest
{
REQUIRED_REQUEST = 0,
HUDBAR_REQUEST,
DYNAMICLOD_REQUEST,
NA
}
public enum NotificationGroup
{
GROUP0
}
public enum SystemStateRequestId
{
AIRCRAFT_PATH
}
}