mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-07-03 13:14:20 +00:00
PckStudio - Fix typo in csproj file
This commit is contained in:
24
PckStudio.ModelSupport/SkinModelInfo.cs
Normal file
24
PckStudio.ModelSupport/SkinModelInfo.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user