MyPolarBear.GameObjects.PolarBear.ShootProjectile C# (CSharp) Method

ShootProjectile() public method

public ShootProjectile ( Vector2 direction ) : Projectile
direction Vector2
return Projectile
        public Projectile ShootProjectile(Vector2 direction)
        {
            return new Projectile(Position, 10.0f, direction, power, this);
        }