Project_Starfighter.Ammo.Fire C# (CSharp) Method

Fire() public method

public Fire ( int X, int Y ) : void
X int
Y int
return void
        public void Fire(int X, int Y)
        {
            aLocation.X = (float)X;
            aLocation.Y = (float)Y;
            ammoActive = true;
        }