class GraphicBase(object):
""" Basic graphics initialization which pys60 require. """
class Graphics(GraphicBase)
""" now we can avoid initialization steps in our code
and just write drawing logic.
"""
class GameCore(object):
""" All logic for game here. """
class Game(object):
""" Main game app class with appuifwmenu functions
and GameCore calls.
"""