qstbak/Questionable.Model/Questionable.Model/AssemblyModelLoader.cs
2026-08-17 20:29:32 +10:00

19 lines
870 B
C#

using System.IO;
using SmartNav.Model;
namespace Questionable.Model;
public static class AssemblyModelLoader
{
public static Stream CommonAetheryte => ModelResources.CommonAetheryte;
public static Stream CommonAethernetShard => ModelResources.CommonAethernetShard;
public static Stream CommonClassJob => typeof(AssemblyModelLoader).Assembly.GetManifestResourceStream("Questionable.Model.CommonClassJob");
public static Stream CommonCompletionFlags => typeof(AssemblyModelLoader).Assembly.GetManifestResourceStream("Questionable.Model.CommonCompletionFlags");
public static Stream CommonRequiredVariables => typeof(AssemblyModelLoader).Assembly.GetManifestResourceStream("Questionable.Model.CommonRequiredVariables");
public static Stream CommonVector3 => typeof(AssemblyModelLoader).Assembly.GetManifestResourceStream("Questionable.Model.CommonVector3");
}