17 lines
254 B
C#
17 lines
254 B
C#
using System.Collections.Generic;
|
|
using BlueWater.Uis;
|
|
using UnityEngine;
|
|
|
|
public class Manual : SwitchActionPopupUi
|
|
{
|
|
public override void Open()
|
|
{
|
|
base.Open();
|
|
}
|
|
|
|
public override void Close()
|
|
{
|
|
base.Close();
|
|
}
|
|
}
|