using UnityEngine; public class RocketButtonController : MonoBehaviour { public HighStrikerController HighStrikerController; public void Use() { HighStrikerController.FlyRocket(); } }