Exemplo n.º 1
0
 public RideOffer(Trip trip, double maxTimeOutOfWay, CarInfo car, int availableSeats, RequestGameElements gameElements)
     : base(gameElements)
 {
     Trip            = trip;
     MaxTimeOutOfWay = maxTimeOutOfWay;
     Car             = car;
     AvailableSeats  = availableSeats;
 }
Exemplo n.º 2
0
 public RequestBase(RequestGameElements gameElements)
 {
     GameElements = gameElements;
 }
Exemplo n.º 3
0
 public RideRequest(Trip trip, RequestGameElements gameElements)
     : base(gameElements)
 {
     Trip = trip;
 }