Bounce.LevelEditor.Editor.showMessage C# (CSharp) Method

showMessage() private method

private showMessage ( string title, string text ) : void
title string
text string
return void
        private void showMessage(string title, string text)
        {
            MessageBox.Show(text, title,
                MessageBoxButtons.OK,
                MessageBoxIcon.Exclamation);
        }