2024-10-21 08:00:11 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using BlueWater.Uis;
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
public class Manual : SwitchActionPopupUi
|
|
|
|
{
|
2024-10-29 06:45:18 +00:00
|
|
|
public override void Open()
|
2024-10-21 08:00:11 +00:00
|
|
|
{
|
2024-10-29 06:45:18 +00:00
|
|
|
base.Open();
|
2024-10-21 08:00:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public override void Close()
|
|
|
|
{
|
|
|
|
base.Close();
|
|
|
|
}
|
|
|
|
}
|