| IGameLaunchingPluginOnAfterGameLaunched Method |
Called immediately after a particular game or additional app has launched. At this point the game was successfully launched and should be running.
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 OnAfterGameLaunched(
IGame game,
IAdditionalApplication app,
IEmulator emulator
)
Sub OnAfterGameLaunched (
game As IGame,
app As IAdditionalApplication,
emulator As IEmulator
)
void OnAfterGameLaunched(
IGame^ game,
IAdditionalApplication^ app,
IEmulator^ emulator
)
abstract OnAfterGameLaunched :
game : IGame *
app : IAdditionalApplication *
emulator : IEmulator -> unit
Parameters
- game IGame
- The game that was launched.
- app IAdditionalApplication
- The additional application that was launched. Will be null if the game was launched without a specific additional application.
- emulator IEmulator
- The emulator that was launched. Will be null if the game was launched without an emulator.
See Also