Created PSM Version 2

This commit is contained in:
MayNL
2026-07-04 17:52:16 -04:00
parent 991d87d421
commit 03fce7304f
7 changed files with 198 additions and 49 deletions
+3 -1
View File
@@ -12,12 +12,14 @@ namespace PckStudio.ModelSupport
{
public SkinModel Model { get; }
public SkinANIM Anim { get; }
public SkinGameFlags SkinFlags { get; }
public Image Texture { get; }
public SkinModelInfo(Image texture, SkinANIM anim, SkinModel model)
public SkinModelInfo(Image texture, SkinANIM anim, SkinGameFlags skinFlags, SkinModel model)
{
Texture = texture;
Anim = anim;
SkinFlags = skinFlags;
Model = model;
}
}