public PitModeScheduleDecoder() { pitSchedule = new TopFourBitDecoder(); pitMode = new BottomFourBitDecoder(); }
public HighestFlagDecoder() { flagReason = new TopFourBitDecoder(); flagColour = new BottomFourBitDecoder(); }
public SectorDecoder() { zExtraPrecision = new TopTwoBitDecoder(); xExtraPrecision = new SecondTwoBitDecoder(); sector = new BottomFourBitDecoder(); }
public GameStateDecoder() { sessionState = new TopFourBitDecoder(); gameState = new BottomFourBitDecoder(); }
public GearNumGearsDecoder() { numGears = new TopFourBitDecoder(); gear = new BottomFourBitDecoder(); }