1
0
mirror of synced 2024-11-12 02:00:50 +01:00
Switch-Toolbox/Switch_Toolbox_Library/Interfaces/IContextMenuNode.cs
KillzXGaming 6798db20de Add massive speed boost and memory improvements for archives with 1000s of files
This also fixes transparency on PBR shader.
Fixes odyssey costume viewer framing bfes
2019-06-24 15:45:54 -04:00

17 lines
451 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Switch_Toolbox.Library
{
//Gets the context menus from a tree node when right clicked
//This can be used to save memory as storing lists of menus for every node takes up too much memory
public interface IContextMenuNode
{
ToolStripItem[] GetContextMenuItems();
}
}