mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-06-11 13:53:51 +00:00
Move Common functionality to Core project & rendering and Model support as well
This commit is contained in:
14
PckStudio.Core/Skin/SkinMetaData.cs
Normal file
14
PckStudio.Core/Skin/SkinMetaData.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace PckStudio.Core.Skin
|
||||
{
|
||||
public sealed class SkinMetaData
|
||||
{
|
||||
public string Name { get; }
|
||||
public string Theme { get; }
|
||||
|
||||
public SkinMetaData(string name, string theme)
|
||||
{
|
||||
Name = name;
|
||||
Theme = theme;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user