Example #1
0
        public void Jump(Firefighter ff, Room destination)
        {
            Room start = ff.Position as Room;

            start.TakeFirefighter(ff);

            destination.PutFirefighter(ff);

            ff.Position = destination;

            IdentifyPOI(ff, destination);
        }