Exemplo n.º 1
0
 public void Remove(Move Move)
 {
     m_colMoves.Remove(Move);
 }
Exemplo n.º 2
0
 public void Replace(int intIndex, Move moveNew)
 {
     m_colMoves[intIndex] = moveNew;
 }
Exemplo n.º 3
0
 public void Add(Move move)
 {
     m_colMoves.Add(move);
 }