Files
HellionChat/ChatTwo/Util/WrapperUtil.cs
T
2024-04-06 03:01:32 +02:00

12 lines
389 B
C#

using Dalamud.Interface.ImGuiNotification;
using Dalamud.Interface.Internal.Notifications;
namespace ChatTwo.Util;
public static class WrapperUtil
{
public static void AddNotification(string content, NotificationType type, bool minimized = true)
{
Plugin.Notification.AddNotification(new Notification { Content = content, Type = type, Minimized = minimized });
}
}