Exemplo n.º 1
0
 public void foreachTag(TezEventExtension.Action <TezTag> action)
 {
     foreach (var tag in m_Set)
     {
         action(TezTag.get(tag));
     }
 }
Exemplo n.º 2
0
 public void remove(TezTag tag)
 {
     m_Set.Remove(tag.ID);
 }
Exemplo n.º 3
0
 public bool oneOf(TezTag tag)
 {
     return(m_Set.Contains(tag.ID));
 }
Exemplo n.º 4
0
 public void add(TezTag tag)
 {
     m_Set.Add(tag.ID);
 }
Exemplo n.º 5
0
 public void remove(int id)
 {
     this.remove(TezTag.get(id));
 }
Exemplo n.º 6
0
 public void add(int id)
 {
     this.add(TezTag.get(id));
 }
Exemplo n.º 7
0
 public void remove(string name)
 {
     this.remove(TezTag.get(name));
 }
Exemplo n.º 8
0
 public void add(string name)
 {
     this.add(TezTag.get(name));
 }