Ejemplo n.º 1
0
 public MovingHead(MHVelocity velo, int id, CheckIfMovementAllowedDelegate checkIfAllowed)
 {
     for (int i = 0; i < 12; i++)
     {
         channelValues.Add(0);
     }
     Velocity = velo;
     Id = id;
     CheckIfAllowed = checkIfAllowed;
 }
Ejemplo n.º 2
0
 public MovingHeadAccessor(MHVelocity velo, int id, CheckIfMovementAllowedDelegate chk)
     : base(velo, id, chk)
 {
 }