PlugIn Development:GameEx Version Info

From Spesoft/GameEx Wiki
Revision as of 20:18, 30 April 2014 by Adultery (talk | contribs) (→‎VB.NET)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

When this structure is populated, the variable returns the current running version of GameEx.

Variables

Below is a reference of the variables available in this structure:

Variable[Value]Description
GameExVersion[string]The current running version of GameEx.


Structures

VB.NET

<StructLayout(LayoutKind.Sequential)> _
Public Structure GameExInfo
     Public GameExVersion As String
End Structure

C#

[ StructLayout( LayoutKind.Sequential )]
public struct GameExInfo
{
     public string GameExVersion;
}