Ejemplo n.º 1
0
 public void Shoot()
 {
     if (_shootTime >= _shootMax)
     {
         _shootTime = Time.Zero;
         Projectiles.Shoot <Laser>(Position, Sprite.Facing);
     }
 }