Files
PCK-Studio/PckStudio.ModelSupport/GameModelInfo.cs
2025-11-25 05:07:28 +01:00

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;
}
}
}