Ejemplo n.º 1
0
 public void Insert(int Index, Effect ToAdd)
 {
     if ((Index >= 0) && (Index < this.m_List.Count))
     {
         this.m_List.Insert(Index, ToAdd);
     }
     else
     {
         this.m_List.Add(ToAdd);
     }
 }
Ejemplo n.º 2
0
 public void Add(Effect e)
 {
     this.m_List.Add(e);
     e.OnStart();
 }
Ejemplo n.º 3
0
 public void Remove(Effect ToRemove)
 {
     this.m_List.Remove(ToRemove);
 }
Ejemplo n.º 4
0
 public int IndexOf(Effect Child)
 {
     return this.m_List.IndexOf(Child);
 }
Ejemplo n.º 5
0
 public int Add(Effect ToAdd)
 {
     return this.m_List.Add(ToAdd);
 }