Uses of Class
com.TeamHEC.LocomotionCommotion.Map.Connection

Packages that use Connection
com.TeamHEC.LocomotionCommotion.Map   
com.TeamHEC.LocomotionCommotion.MapActors   
com.TeamHEC.LocomotionCommotion.Train   
 

Uses of Connection in com.TeamHEC.LocomotionCommotion.Map
 

Fields in com.TeamHEC.LocomotionCommotion.Map with type parameters of type Connection
 java.util.ArrayList<Connection> MapObj.connections
           
 

Methods in com.TeamHEC.LocomotionCommotion.Map with parameters of type Connection
 boolean Connection.isReverseOf(Connection connection)
           
 

Uses of Connection in com.TeamHEC.LocomotionCommotion.MapActors
 

Methods in com.TeamHEC.LocomotionCommotion.MapActors that return Connection
 Connection Game_Map_MapObj.getRouteConnection()
          Gets the route connection
 

Methods in com.TeamHEC.LocomotionCommotion.MapActors with parameters of type Connection
 void Game_Map_MapObj.setRouteAvailable(Train train, Connection connection)
          sets the route and of the route is availible
 

Uses of Connection in com.TeamHEC.LocomotionCommotion.Train
 

Fields in com.TeamHEC.LocomotionCommotion.Train with type parameters of type Connection
 java.util.ArrayList<Connection> TrainInfoUI.adjacent
           
 

Methods in com.TeamHEC.LocomotionCommotion.Train that return types with arguments of type Connection
 java.util.ArrayList<Connection> Route.getAdjacentConnections()
          Can be used to see which adjacent connections are available to add to an existing route
 java.util.ArrayList<Connection> Route.getRoute()
           
 

Methods in com.TeamHEC.LocomotionCommotion.Train with parameters of type Connection
 void Route.addConnection(Connection connection)
          Adds a new connection to the end of the route, if the player has enough fiel Usually one of the connections return from getAdjacentConnections()
 void Route.hideConnectionBlips(Connection connection)
           
 void Route.showConnectionBlips(Connection connection)
          Creates route UI dots for this connection
 

Constructor parameters in com.TeamHEC.LocomotionCommotion.Train with type arguments of type Connection
Route(java.util.ArrayList<Connection> path, int routeIndex, float connectionTravelled)
          Used to reload an existing route