NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/GameWrapper/CmpUIMainCameraTarget.cs

20 lines
369 B
C#

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<RawImage>();
}
}
}