This repository has been archived on 2026-01-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files

17 lines
299 B
C#
Raw Permalink Normal View History

2025-02-24 12:12:52 +09:00
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()
{
}
}
}