#! /usr/bin/python3 # ================================================================== # 3D Matrix Game - Global Variables # ================================================================== # ---- global variables -------------------------------------------- # CurrentNode matrix current (working) node # Debug flag - print debug messages # EndNode matrix path end node # MatrixEdge nodes per matrix dimensions (x,y,z) # StartNode matrix path start node # Verbose flag - print verbose messages # ------------------------------------------------------------------ CurrentNode = None Debug = False EndNode = None MatrixEdge = 5 StartNode = None Verbose = False