canto/Assets/Scripts/UI/Notification.cs
2025-07-18 20:38:44 -04:00

19 lines
353 B
C#

using UnityEngine;
namespace KitsuneCafe.UI
{
public class Notification : MonoBehaviour
{
[SerializeField]
private UiOrchestrator orchestrator;
[SerializeField]
private ModalElement modal;
[SerializeField]
private string title;
[SerializeField]
private string message;
}
}