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