예제 #1
0
파일: UICell.cs 프로젝트: hjj0416/Demo
 public void Despawn()
 {
     OnDespawn();
     //_isInit = false;
     _notifier   = null;
     _context    = null;
     _isSelected = false;
 }
예제 #2
0
파일: UICell.cs 프로젝트: hjj0416/Demo
 public void Init(ICellNotifier notifier)
 {
     _notifier = notifier;
     if (_isInit)
     {
         return;
     }
     _isInit = true;
     OnInit();
 }