7 lines
84 B
C#
7 lines
84 B
C#
|
using UnityEngine;
|
||
|
|
||
|
public interface IPanel
|
||
|
{
|
||
|
public GameObject BuildPanel();
|
||
|
}
|