powerfun-unity/Assets/Scripts/UI/Control/PFUIComponentBase.cs

15 lines
252 B
C#
Raw Normal View History

2021-03-29 09:10:59 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using UnityEngine;
namespace Assets.Scripts.UI.Control
{
2021-03-30 14:23:41 +08:00
public abstract class PFUIComponentBase : MonoBehaviour
2021-03-29 09:10:59 +08:00
{
2021-03-30 14:23:41 +08:00
2021-03-29 09:10:59 +08:00
}
}