2022-01-16 05:40:49 +03:00

14 lines
256 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ShotUIView : MonoBehaviour
{
[SerializeField] private GameObject shotOn;
public void Switch()
{
shotOn.SetActive(!shotOn.activeSelf);
}
}