mirror of
https://github.com/ultrasn0w/app.git
synced 2025-12-13 12:19:54 +01:00
11 lines
158 B
C#
11 lines
158 B
C#
namespace APP;
|
|
|
|
public partial class LogWin : Form
|
|
{
|
|
public LogWin(string log)
|
|
{
|
|
InitializeComponent();
|
|
logBox.Text = log;
|
|
}
|
|
}
|