7 lines
107 B
C#
Raw Normal View History

2025-09-08 14:51:28 +08:00
using System;
using UnityEngine;
public interface IUp
{
void Up(Action<GameObject> callback = null);
}