Switch-Toolbox/Switch_FileFormatsMain/FileFormats/BFRES/Bfres Structs/FBNV.cs

21 lines
413 B
C#
Raw Normal View History

2018-11-22 20:54:52 +00:00
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);
}
}
}