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