Bitmap

From SwinGame

Bitmap is a pointer to a data structure which contains the following data.

  • Basic
    • width (Integer) - Width of the bitmap
    • height (Integer) - Height of the bitmap
  • Internal
    • surface (PSDL_Surface) - Surface data
    • nonTransparentPixels (Array of Array of Boolean) - Transparency data used for collision detection
Note: Avoid modifying an internal data. C# and VB6 does not have an access to all internal data

Where is it: SGSDK_CORE

Also See