play.api

This module contains the API for the game.

 1"""
 2This module contains the API for the game.
 3"""
 4
 5from pygame import init  # pylint: disable=no-name-in-module,import-error
 6
 7from .generators import *
 8from .events import *
 9from .utils import *
10from .random import *
11
12init()