BattleMenu.SetOrder C# (CSharp) Method

SetOrder() public method

public SetOrder ( string text ) : void
text string
return void
    public void SetOrder(string text)
    {
        this.order = text.Split(new char[] {':'});
        if(this.order.Length < 6)
        {
            this.order = ArrayHelper.Add(BattleMenu.ENDTURN, this.order);
        }
    }