예제 #1
0
 //Regist All Handle
 public void RegistAllHandle()
 {
     for (int i = 0; i < m_HandleList.Count; i++)
     {
         CHandleBase handleBase = (CHandleBase)m_HandleList[i];
         if (handleBase != null)
         {
             handleBase.RegistAllHandle();
         }
     }
 }
예제 #2
0
 public void AddHandleBase(CHandleBase base1)
 {
     m_HandleList.Add(base1);
 }