Files
HellionChat/ChatTwo/Util/WrapperUtil.cs
T
2024-06-30 05:07:11 +02:00

11 lines
341 B
C#

using Dalamud.Interface.ImGuiNotification;
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 });
}
}