Ejemplo n.º 1
0
 public void RemoveDelegate(CountTurn Method)
 {
     this.countDel -= Method;
 }
Ejemplo n.º 2
0
 /**
  * @brief 턴 세기
  * @param Method 턴에 추가할 함수
  */
 public void AddDelegate(CountTurn Method)
 {
     this.countDel += Method;
 }