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