1
0
mirror of synced 2024-12-04 11:58:03 +01:00
Switch-Toolbox/Switch_FileFormatsMain/PluginRuntime.cs

20 lines
650 B
C#
Raw Normal View History

2018-11-12 02:51:12 +01:00
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
{
2018-12-02 23:30:46 +01:00
public static List<BNTX> bntxContainers = new List<BNTX>();
2018-11-17 23:33:00 +01:00
public static List<FTEXContainer> ftexContainers = new List<FTEXContainer>();
2018-11-12 02:51:12 +01:00
public static DockState FSHPDockState = DockState.DockRight;
public static string ExternalFMATPath = "";
public static string OdysseyGamePath = "";
2018-11-17 23:33:00 +01:00
public static List<string> SarcHashes = new List<string>(); //Each sarc has their own hash
2018-11-12 02:51:12 +01:00
}
}