19 lines
870 B
C#
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");
|
|
}
|