Data Types

From Heavy Iron Modding
Revision as of 08:50, 1 September 2018 by Battlepedia>Igorseabra4 (Created page with "==Basic types== {| class="wikitable" |+ ! Type ! Description |- | int, int32 || 32-bit signed integer |- | uint, int32 || 32-bit unsigned integer |- | short, int16 || 16-bit...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Basic types

Type Description
int, int32 32-bit signed integer
uint, int32 32-bit unsigned integer
short, int16 16-bit signed integer
ushort, uint16 16-bit unsigned integer
byte 8-bit signed integer
char 8-bit unsigned ASCII integer
float IEEE 754 floating point number

Structs

Vector3

Type Description
float X - The X coordinate of this vector
float Y - The Y coordinate of this vector
float Z - The Z coordinate of this vector

UIColor

Type Description
byte R - red component of this color
byte G - green component of this color
byte B - blue component of this color
byte A - alpha component of this color