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

From Spesoft/GameEx Wiki
Jump to navigation Jump to search
Line 1: Line 1:
This function is called when GameEx exits.<br />Using this function call, you can run code to do various things, such as save configuration files or launch external programs.<br />If you don't have code to run, you can simply leave this section blank.
This substructure is called when GameEx shuts down.
<br />
<br />
== <span style="color:darkblue;">Code Examples</span> ==
== <span class="plugin_headline_text">Parameters</span> ==
=== <span style="color:#003300;">VB.NET</span> ===
This substructre has no available parameters.
----
<br />
<pre style="font-family:'Lucida Console', Monaco, monospace; border-color:#003300; background-color:#E0EEE0; border-style:solid;">
== <span class="plugin_headline_text">Code Examples</span> ==
=== <span class="plugin_text_fx">VB.NET</span> ===
<pre class="code_block_func">
Public Sub Event_App_Exit()
Public Sub Event_App_Exit()
     'Run some code here!
     'Run some code here!
End Sub</pre>
End Sub</pre>


=== <span style="color:#003300;">C#</span> ===
=== <span class="plugin_text_fx">C#</span> ===
----
----
<pre style="font-family:'Lucida Console', Monaco, monospace; border-color:#003300; background-color:#E0EEE0; border-style:solid;">
<pre class="code_block_func">
public void Event_App_Exit()
public void Event_App_Exit()
{
{

Revision as of 01:22, 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!		
}