mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2025-01-03 08:38:42 +00:00
17 lines
501 B
C#
17 lines
501 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using WeifenLuo.WinFormsUI.Docking;
|
|
|
|
namespace FirstPlugin
|
|
{
|
|
public class PluginRuntime
|
|
{
|
|
public static List<BinaryTextureContainer> bntxContainers = new List<BinaryTextureContainer>();
|
|
public static DockState FSHPDockState = DockState.DockRight;
|
|
public static string ExternalFMATPath = "";
|
|
public static string OdysseyGamePath = "";
|
|
}
|
|
}
|