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