ObjectEditor.frmMain.GetAbout C# (CSharp) Method

GetAbout() private method

private GetAbout ( ) : string
return string
        string GetAbout()
        {
            return "FOnline ObjectEditor " + Utils.GetVersion() + Environment.NewLine +
                           "Coded by Ghosthack" + Environment.NewLine +
                           "Original tool by cvet" + Environment.NewLine +
                           "http://fonline.ru" + Environment.NewLine +
                           "http://fodev.net" + Environment.NewLine +
                           "http://github.com/rotators/tools" +

                           Environment.NewLine + Environment.NewLine +
                           "Compatible with proto files from ObjectEditor " + Utils.GetFormatCompatibilityVersion() + " and newer." + Environment.NewLine +
                           Environment.NewLine +
                           "Uses the Silk Icon set 1.3 by Mark James http://www.famfamfam.com/lab/icons/silk/";
        }