Difference between revisions of "PlugIn Development:GameEx Event App Exit Function"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
This | This substructure is called when GameEx shuts down. | ||
<br /> | <br /> | ||
== <span | == <span class="plugin_headline_text">Parameters</span> == | ||
=== <span | This substructre has no available parameters. | ||
<br /> | |||
<pre | == <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 | === <span class="plugin_text_fx">C#</span> === | ||
---- | ---- | ||
<pre | <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! }