public PitModeScheduleDecoder()
 {
     pitSchedule = new TopFourBitDecoder();
     pitMode     = new BottomFourBitDecoder();
 }
Example #2
0
 public GameStateDecoder()
 {
     sessionState = new TopFourBitDecoder();
     gameState    = new BottomFourBitDecoder();
 }
 public HighestFlagDecoder()
 {
     flagReason = new TopFourBitDecoder();
     flagColour = new BottomFourBitDecoder();
 }
Example #4
0
 public GearNumGearsDecoder()
 {
     numGears = new TopFourBitDecoder();
     gear     = new BottomFourBitDecoder();
 }