Questionable/Questionable.Model/AssemblyModelLoader.cs

18 lines
887 B
C#
Raw Normal View History

2024-08-02 18:30:21 +02:00
using System.IO;
namespace Questionable.Model;
public static class AssemblyModelLoader
{
2025-02-05 01:21:28 +01:00
public static Stream CommonAetheryte =>
typeof(AssemblyModelLoader).Assembly.GetManifestResourceStream("Questionable.Model.CommonAetheryte")!;
public static Stream CommonAethernetShard =>
typeof(AssemblyModelLoader).Assembly.GetManifestResourceStream("Questionable.Model.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 CommonVector3 =>
typeof(AssemblyModelLoader).Assembly.GetManifestResourceStream("Questionable.Model.CommonVector3")!;
2024-08-02 18:30:21 +02:00
}