18 lines
382 B
C#
18 lines
382 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace NEG.UI.Popup
|
|
{
|
|
public class DefaultPopupData : PopupData
|
|
{
|
|
public string Title;
|
|
public string Content;
|
|
public readonly List<(string, Action)> Options = new(5);
|
|
|
|
public override void OnRelease()
|
|
{
|
|
base.OnRelease();
|
|
Options.Clear();
|
|
}
|
|
}
|
|
} |