You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ADVFRED edited this page May 24, 2020
·
1 revision
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.