mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-29 15:11:56 +00:00
5eb438e3ba
Added map scripting capabilities to UDB (#656). Documentation at https://biwa.github.io/udbscript-docs/
24 lines
540 B
C#
24 lines
540 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
using CodeImp.DoomBuilder.Windows;
|
|
|
|
namespace CodeImp.DoomBuilder.UDBScript
|
|
{
|
|
public partial class UDBScriptErrorForm : DelayedForm
|
|
{
|
|
public UDBScriptErrorForm(string message, string stacktrace)
|
|
{
|
|
InitializeComponent();
|
|
|
|
tbStackTrace.Text = message + "\r\n" + stacktrace;
|
|
tbStackTrace.Select(0, 0);
|
|
}
|
|
}
|
|
}
|