16 lines
401 B
C#
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
|
|
{
|
|
}
|
|
}
|