ProjectDDD/Assets/Plugins/Pixel Crushers/Dialogue System/Scripts/UI/Utility/QueuedUIAlert.cs
2025-07-08 19:46:31 +09:00

20 lines
383 B
C#

// Copyright (c) Pixel Crushers. All rights reserved.
using UnityEngine;
namespace PixelCrushers.DialogueSystem
{
public class QueuedUIAlert
{
public string message;
public float duration;
public QueuedUIAlert(string message, float duration)
{
this.message = message;
this.duration = duration;
}
}
}