Docs: _Overview - Pythagorous-Studios/pythag GitHub Wiki

Pythagorous currently consists of 3 core classes.

game class- the game class is the manager of instances of the place class and instances of the player class.It provides lookup and existence checks.

Place class-A class representing places,managed by game.Its attributes include an x and y coordinate as well as a description of the location.

Player class-The class representing the player,managed by the game class.The player can move by checking to see if the new x and y coordinates exist within all of the places managed by its manager.