1
0
mirror of synced 2025-02-25 14:34:47 +01:00

16 lines
408 B
C#
Raw Normal View History

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