コード例 #1
0
ファイル: PmViewErrorHandler.cs プロジェクト: wyb314/Projeny
        IEnumerator DisplayErrorInternalAsync(string message)
        {
            Assert.That(!_isDisplayingError);
            _isDisplayingError = true;

            yield return(_view.AlertUser(message, "<color=red>Error!</color>"));

            _isDisplayingError = false;
        }