11 lines
209 B
C#
11 lines
209 B
C#
using UnityEngine;
|
|
|
|
public class RocketButtonController : MonoBehaviour
|
|
{
|
|
public HighStrikerController HighStrikerController;
|
|
public void Use()
|
|
{
|
|
HighStrikerController.FlyRocket();
|
|
}
|
|
}
|