ARCed.Scripting.Script.SetTitle C# (CSharp) Метод

SetTitle() приватный Метод

Sets the title of the script
private SetTitle ( string title ) : void
title string The title of the script
Результат void
        private void SetTitle(string title)
        {
            if (title != this._title)
            {
                this._title = title;
                this.NeedSaved = true;
            }
        }