PlugIn Development:GameEx Event App Exit Function

From Spesoft/GameEx Wiki
Revision as of 06:25, 27 April 2014 by Adultery (talk | contribs)
Jump to navigation Jump to search

This function is called when GameEx exits.
Using this function call, you can run code to do various things, such as save configuration files or launch external programs.
If you don't have code to run, you can simply leave this section blank.

Code Examples

VB.NET

Public Sub Event_App_Exit()
     'Run some code here!
End Sub

C#

public void Event_App_Exit()
{
     //Run some code here!		
}