Difference between revisions of "PlugIn Development:GameEx Event App Exit Function"
Jump to navigation
Jump to search
(→C#) |
|||
(7 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
==<span | This substructure is called when GameEx shuts down. | ||
This | <br /> | ||
== <span class="plugin_headline_text">Parameters</span> == | |||
This substructre has no available parameters. | |||
==Code Examples== | <br /> | ||
== <span class="plugin_headline_text">Code Examples</span> == | |||
<span | === <span class="plugin_text_fx">VB.NET</span> === | ||
<pre | <pre class="code_vb"> | ||
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_cs"> | ||
public void Event_App_Exit() | public void Event_App_Exit() | ||
{ | { | ||
//Run some code here! | //Run some code here! | ||
}</pre> | }</pre> | ||
<br /> | |||
[[Category:PlugIn Development]] | [[Category:PlugIn Development]] |
Latest revision as of 07:46, 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! }