Difference between revisions of "PlugIn Development:GameEx Event App Exit Function"

From Spesoft/GameEx Wiki
Jump to navigation Jump to search
Line 12: Line 12:


=== <span class="plugin_text_fx">C#</span> ===
=== <span class="plugin_text_fx">C#</span> ===
----
<pre class="code_block_func">
<pre class="code_block_func">
public void Event_App_Exit()
public void Event_App_Exit()

Revision as of 01:23, 28 April 2014

This substructure is called when GameEx shuts down.

Parameters

This substructre has no available parameters.

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!		
}