7 lines
111 B
C#
7 lines
111 B
C#
using System;
|
|
using UnityEngine;
|
|
public interface IStay
|
|
{
|
|
void Stay(Action<GameObject> callback = null);
|
|
}
|