Game Map

The game map is a linked list of nodes. Traveling to the next node requires selecting a valid road from your current node. There can be 2-3 roads to choose from, but they all end up at the same location.

Instance variables

Name

Type

Description

head

Node

The node the contract starts at

current_node

Node

The node you are currently at