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

19 lines
336 B
C#

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