MoTaForPSVita/Assets/Scripts/Event/Item/EventItemNotepad.cs
2024-04-30 17:39:50 +08:00

14 lines
284 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class EventItemNotepad : MonoBehaviour, IInteraction
{
public bool Interaction()
{
GameManager.Instance.UIManager.ShowNotepad();
return false;
}
}