1
0
mirror of synced 2024-09-24 19:48:21 +02:00
Switch-Toolbox/Toolbox/GUI/NodeWrappers.cs

16 lines
401 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Toolbox.Library.NodeWrappers
{
//Based on
// https://github.com/libertyernie/brawltools/blob/40d7431b1a01ef4a0411cd69e51411bd581e93e2/BrawlBox/NodeWrappers/BaseWrapper.cs
public abstract class BaseWrapper : TreeNode
{
}
}