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

20 lines
357 B
C#

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