20 lines
373 B
C#
20 lines
373 B
C#
|
using UnityEngine;
|
||
|
|
||
|
// ReSharper disable once CheckNamespace
|
||
|
namespace BlueWaterProject
|
||
|
{
|
||
|
public class MenuPopupUi : PopupUi
|
||
|
{
|
||
|
public override void Open()
|
||
|
{
|
||
|
Time.timeScale = 0f;
|
||
|
base.Open();
|
||
|
}
|
||
|
|
||
|
public override void Close()
|
||
|
{
|
||
|
Time.timeScale = 1f;
|
||
|
base.Close();
|
||
|
}
|
||
|
}
|
||
|
}
|