initial commit

This commit is contained in:
2026-06-04 00:55:54 +03:00
commit 89979b009f
1632 changed files with 880133 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
using UnityEngine;
public class RocketButtonController : MonoBehaviour
{
public HighStrikerController HighStrikerController;
public void Use()
{
HighStrikerController.FlyRocket();
}
}