3. Data Module

color_dict

A dictionary mapping color names to color objects.

  • Type:

    • dict


color_dict = {
    "red": (255, 0, 0),
    "green": (0, 255, 0),
    "blue": (0, 0, 255)
}

This reference should help you understand the various components and methods available in VortexEngine. For more detailed usage, consult the specific method documentation or examples provided.

Last updated