20 lines
615 B
C#
20 lines
615 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using Bfres.Structs;
|
|||
|
|
|||
|
namespace FirstPlugin
|
|||
|
{
|
|||
|
public class PluginRuntime
|
|||
|
{
|
|||
|
public static List<BNTX> bntxContainers = new List<BNTX>();
|
|||
|
public static List<BFRESGroupNode> ftexContainers = new List<BFRESGroupNode>();
|
|||
|
public static string ExternalFMATPath = "";
|
|||
|
public static string OdysseyGamePath = "";
|
|||
|
public static string Mk8GamePath = "";
|
|||
|
public static List<string> SarcHashes = new List<string>(); //Each sarc has their own hash
|
|||
|
}
|
|||
|
}
|