mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-12-23 11:23:08 +00:00
20 lines
413 B
C#
20 lines
413 B
C#
using Switch_Toolbox.Library;
|
|
using System.Windows.Forms;
|
|
using FirstPlugin;
|
|
|
|
namespace Bfres.Structs
|
|
{
|
|
public class FbnvFolder : TreeNodeCustom
|
|
{
|
|
public FbnvFolder()
|
|
{
|
|
Text = "Bone Visabilty Animations";
|
|
Name = "FBNV";
|
|
}
|
|
public override void OnClick(TreeView treeView)
|
|
{
|
|
FormLoader.LoadEditor(this, Text);
|
|
}
|
|
}
|
|
|
|
}
|