17 lines
299 B
C#
17 lines
299 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
|
|||
|
|
using UnityEngine;
|
|||
|
|
using UnityEngine.UI;
|
|||
|
|
using UnityEngine.EventSystems;
|
|||
|
|
namespace WIFramework.UI
|
|||
|
|
{
|
|||
|
|
public class PanelBase : WIBehaviour
|
|||
|
|
{
|
|||
|
|
public virtual void OnClick_ColliderButton()
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|