AssemblyCSharp.activate_move.playerBulletHit C# (CSharp) Method

playerBulletHit() public method

public playerBulletHit ( ) : void
return void
        public void playerBulletHit()
        {
            for(int i = 0; i < targets.Count; i++){
                targets[i].GetComponent<movingPlatformBehavior>().enabled = !targets[i].GetComponent<movingPlatformBehavior>().enabled;
            }
        }
activate_move