FileWatcher/code/src/ScriptManager.cs

27 lines
614 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;
namespace FileWatcher
{
public partial class ScriptManager : Form
{
public ScriptManager()
{
InitializeComponent();
}
// each script has a script id, so the user can rename or redirect at there will, and the scripts will remain correctly linked.
private void ScriptManager_Load(object sender, EventArgs e)
{
}
}
}