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