mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-21 22:37:43 +00:00
21 lines
475 B
C#
21 lines
475 B
C#
using System.Collections.Generic;
|
|
using OMI.Formats.Model;
|
|
using NamedTexture = PckStudio.Core.NamedData<System.Drawing.Image>;
|
|
|
|
namespace PckStudio.ModelSupport
|
|
{
|
|
public sealed class GameModelInfo
|
|
{
|
|
public Model Model { get; }
|
|
|
|
public IEnumerable<NamedTexture> Textures { get; }
|
|
|
|
public GameModelInfo(Model model, IEnumerable<NamedTexture> textures)
|
|
{
|
|
Model = model;
|
|
Textures = textures;
|
|
}
|
|
|
|
}
|
|
}
|