BattleMenu.GetOrder C# (CSharp) Method

GetOrder() public method

public GetOrder ( ) : string
return string
    public string GetOrder()
    {
        string text = "";
        for(int i=0; i<this.order.Length; i++)
        {
            if(i>0) text += ":";
            text += this.order[i];
        }
        return text;
    }