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