コード例 #1
0
ファイル: PopupError.cs プロジェクト: AnomalousMedical/Engine
        public static void ShowPopup(String text, IntVector2 location)
        {
            PopupError error = new PopupError(text);

            error.show(location.x, location.y);
        }