mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-22 14:45:50 +00:00
20 lines
406 B
C#
20 lines
406 B
C#
using System.Collections.Generic;
|
|
using OMI.Formats.Model;
|
|
|
|
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;
|
|
}
|
|
|
|
}
|
|
}
|