PlugIn Development:GameEx Version Info: Difference between revisions
Jump to navigation
Jump to search
| Line 3: | Line 3: | ||
== <span class="plugin_headline_text">Variables</span> == | == <span class="plugin_headline_text">Variables</span> == | ||
<p>Below is a reference of the <span style="color:darkred"><b>Variable Name</b></span> and <span style="color:blue"><b>[Data Type]</b></span> available in this structure:</p> | <p>Below is a reference of the <span style="color:darkred"><b>Variable Name</b></span> and <span style="color:blue"><b>[Data Type]</b></span> available in this structure:</p> | ||
<div | <div class="code_variables"><span style="color:darkred"><b>GameExVersion</b></span> <span style="color:blue"><b>[string]</b></span> : The current running version of GameEx.</div> | ||
<br /> | <br /> | ||
Revision as of 11:06, 27 April 2014
When this structure is populated, the variable returns the current running version of GameEx.
Variables
Below is a reference of the Variable Name and [Data Type] available in this structure:
GameExVersion [string] : The current running version of GameEx.
Code Examples
VB.NET
<StructLayout(LayoutKind.Sequential)> _
Public Structure GameExInfo
Public GameExVersion As String
End Structure
C#
[ StructLayout( LayoutKind.Sequential )]
public struct GameExInfo
{
public string GameExVersion;
}