public TankTurret(TankBase tank, float turretRotationSpeed, float cannonRotationSpeed)
 {
     _rotation=new TransformableAngle(turretRotationSpeed,0);
     _cannon = new TankCannon(tank, cannonRotationSpeed);
 }