BattleMenu.MoveDown C# (CSharp) Method

MoveDown() public method

public MoveDown ( int index ) : void
index int
return void
    public void MoveDown(int index)
    {
        string tmp = this.order[index+1];
        this.order[index+1] = this.order[index];
        this.order[index] = tmp;
    }