27 lines
365 B
C#
27 lines
365 B
C#
![]() |
using UnityEngine;
|
||
|
|
||
|
namespace BlueWater.Uis
|
||
|
{
|
||
|
public class TutorialPopupUi : PopupUi
|
||
|
{
|
||
|
public override void Open()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public override void Close()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public override void EnableInput()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public override void DisableInput()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|