public static void Queue(string notificationText, NRNotifType type) { notifications.Add(new NRNotification(notificationText, type)); }
public NRNotification(string c, NRNotifType type, float dur = 3.0f) { content = c; duration = dur; this.type = type; }