mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-21 23:27:09 +00:00
25 lines
552 B
C#
25 lines
552 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using PckStudio.Core.Skin;
|
|
|
|
namespace PckStudio.ModelSupport
|
|
{
|
|
public sealed class SkinModelInfo
|
|
{
|
|
public SkinModel Model { get; }
|
|
public SkinANIM Anim { get; }
|
|
public Image Texture { get; }
|
|
|
|
public SkinModelInfo(Image texture, SkinANIM anim, SkinModel model)
|
|
{
|
|
Texture = texture;
|
|
Anim = anim;
|
|
Model = model;
|
|
}
|
|
}
|
|
}
|