예제 #1
0
        public static void NotifyTheTarget(Notifier n)
        {
            INotified inf = notifiedTargetList[n.target];

            if (inf != null)
            {
                inf.notified(n);
            }
        }
예제 #2
0
 public static void AddObjectToNotify(INotified obj)
 {
     _notifiedObjects.Add(obj);
 }