public void Remove(Move Move) { m_colMoves.Remove(Move); }
public void Replace(int intIndex, Move moveNew) { m_colMoves[intIndex] = moveNew; }
public void Add(Move move) { m_colMoves.Add(move); }