Exemple #1
0
 public override bool Contains(ICUpdatable updatable)
 {
     return(false);
 }
Exemple #2
0
 public override bool Remove(ICUpdatable updatable)
 {
     throw new InvalidOperationException("Can't remove element from unmodifiable updatable list");
 }
 protected void RemoveUpdatable(ICUpdatable updatable)
 {
     m_updatables.Remove(updatable);
 }
Exemple #4
0
 public override bool Add(ICUpdatable updatable)
 {
     throw new InvalidOperationException("Can't add element to unmodifiable updatable list");
 }
 protected void AddUpdatable(ICUpdatable updatable)
 {
     m_updatables.Add(updatable);
 }