CapersProject/Assets/Plugins/Pixel Crushers/Dialogue System/Scripts/UI/Utility/QueuedUIAlert.cs

20 lines
383 B
C#
Raw Normal View History

// 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;
}
}
}