mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-22 05:40:11 +00:00
29 lines
424 B
C#
29 lines
424 B
C#
|
|
namespace MSFSPopoutPanelManager.FsConnector
|
|
{
|
|
public enum SimConnectDefinition
|
|
{
|
|
SimConnectDataStruct
|
|
}
|
|
|
|
public enum NotificationGroup
|
|
{
|
|
GROUP0,
|
|
}
|
|
|
|
public enum DataRequest
|
|
{
|
|
REQUEST_1
|
|
}
|
|
|
|
public enum SimConnectSystemEvent
|
|
{
|
|
FOURSECS,
|
|
SIMSTART,
|
|
SIMSTOP,
|
|
FLIGHTLOADED,
|
|
VIEW,
|
|
PAUSED,
|
|
NONE
|
|
};
|
|
}
|