ChallengeGameView.cs 437 B

123456789101112131415161718192021222324252627
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEngine.UI;
  5. using UnityEngine.SceneManagement;
  6. public class ChallengeGameView : MonoBehaviour
  7. {
  8. public Text arrows;
  9. public static ChallengeGameView ins;
  10. void Start()
  11. {
  12. ins = this;
  13. }
  14. public void Shoot()
  15. {
  16. ArmBow.ins.ADS_fire();
  17. }
  18. public void SetBasePoint()
  19. {
  20. }
  21. }