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/FsConnector/Enums.cs

29 lines
421 B
C#
Raw Normal View History

2022-07-01 01:53:08 +02:00
namespace MSFSPopoutPanelManager.FsConnector
2022-01-27 14:40:04 +01:00
{
public enum SimConnectDefinition
{
SimConnectDataStruct
}
public enum NotificationGroup
{
2022-07-01 01:53:08 +02:00
GROUP0
2022-01-27 14:40:04 +01:00
}
public enum DataRequest
{
REQUEST_1
}
public enum SimConnectSystemEvent
{
FOURSECS,
SIMSTART,
SIMSTOP,
FLIGHTLOADED,
VIEW,
2022-07-01 01:53:08 +02:00
PAUSED,
2022-04-18 05:38:33 +02:00
NONE
2022-01-27 14:40:04 +01:00
};
}