Ejemplo n.º 1
0
 public void Despawn()
 {
     OnDespawn();
     //_isInit = false;
     _notifier   = null;
     _context    = null;
     _isSelected = false;
 }
Ejemplo n.º 2
0
 public void Init(ICellNotifier notifier)
 {
     _notifier = notifier;
     if (_isInit)
     {
         return;
     }
     _isInit = true;
     OnInit();
 }