DragonNest/Common/QuestTool/Backup/DNNpc/Executions/Exe_Script.cs

24 lines
457 B
C#
Raw Normal View History

2024-12-19 09:48:26 +08:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Text;
using System.Windows.Forms;
namespace DNNpc.Executions
{
public partial class Exe_Script : UserControl
{
public Exe_Script()
{
InitializeComponent();
}
public void Set_Value(string p_script)
{
textBox_Script.Text = p_script;
}
}
}