1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2024-11-22 13:50:14 +00:00
msfs-popout-panel-manager/FsConnector/Enums.cs

29 lines
421 B
C#
Raw Normal View History

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