| IGameLaunchingPluginOnBeforeGameLaunching Method |
Called immediately before a particular game or additional app begins launching. At this point the game is not guaranteed to launch successfully if the startup file does not exist or some other anomaly is encountered.
Namespace: Unbroken.LaunchBox.PluginsAssembly: Unbroken.LaunchBox.Plugins (in Unbroken.LaunchBox.Plugins.dll) Version: 13.5.0.0
XMLNS for XAML: Not mapped to an xmlns.
Syntax void OnBeforeGameLaunching(
IGame game,
IAdditionalApplication app,
IEmulator emulator
)
Sub OnBeforeGameLaunching (
game As IGame,
app As IAdditionalApplication,
emulator As IEmulator
)
void OnBeforeGameLaunching(
IGame^ game,
IAdditionalApplication^ app,
IEmulator^ emulator
)
abstract OnBeforeGameLaunching :
game : IGame *
app : IAdditionalApplication *
emulator : IEmulator -> unit
Parameters
- game IGame
- The game that is launching.
- app IAdditionalApplication
- The additional application that is launching. Will be null if the game is launching without a specific additional application.
- emulator IEmulator
- The emulator that is launching. Will be null if the game is launching without an emulator.
See Also