BattleTextSettings.InitTexts C# (CSharp) Méthode

InitTexts() public méthode

public InitTexts ( string txt ) : void
txt string
Résultat void
    public void InitTexts(string txt)
    {
        this.text = new string[DataHolder.Languages().GetDataCount()];
        for(int i=0; i<this.text.Length; i++)
        {
            this.text[i] = txt;
        }
    }