public byte ReadPort2(IController c, bool left_mode, bool update_wheel)
 {
     if (update_wheel)
     {
         wheel2 = Port2.Update_Wheel(c, wheel2);
     }
     return(Port2.Read(c, left_mode, wheel2));
 }
 public byte ReadPort2(IController c)
 {
     return(Port2.Read(c));
 }
예제 #3
0
        public byte ReadPort2(IController c, bool leftMode, bool updateWheel)
        {
            wheel2 = Port2.UpdateWheel(c);

            return(Port2.Read(c, leftMode, updateWheel, temp_wheel2));
        }
예제 #4
0
 public byte ReadPort2(IController c, bool left_mode)
 {
     return(Port2.Read(c, left_mode));
 }