Exemplo n.º 1
0
 public void AddListener(PoolGameObjectListener l)
 {
     if (!this.listeners.Contains(l))
     {
         this.listeners.Add(l);
     }
 }
Exemplo n.º 2
0
 public void RemoveListener(PoolGameObjectListener l)
 {
     this.listeners.Remove(l);
 }