Exemple #1
0
 public void carEnteredCarPark()
 {
     entryBarrier.Lower();
     if (currentSpaces >= maxSpaces)
     {
         fullSign.setLit(true); //turns on sign
     }
 }
Exemple #2
0
        public void carEnteredCarPark()
        {
            currentSpaces++;

            entryBarrier.Lower();

            if (currentSpaces >= maxSpaces)
            {
                fullSign.setLit(true); //turns on sign
            }

            ticketMachine.clearMessage();
        }