using System; using UnityEngine; using UnityEngine.UI; namespace GameWrapper { [RequireComponent(typeof(RawImage))] public class CmpUISkillCameraTarget : MonoBehaviour { public static RawImage rawImage { get; private set; } private void Awake() { rawImage = GetComponent(); } } }