예제 #1
0
 public void UnRegisterDataListener(newDataEvent function)
 {
     if (newDataEvent != null)
     {
         newDataEvent -= function;
     }
 }
예제 #2
0
파일: Apollo.cs 프로젝트: h2oz/AlloHouston
 public void RegisterDataListener(newDataEvent function)
 {
     if (newDataEvent == null)
     {
         newDataEvent = function;
     }
     else
     {
         newDataEvent += function;
     }
 }