mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-23 07:36:10 +00:00
26 lines
541 B
C#
26 lines
541 B
C#
using System.Drawing;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace PckStudio.Core.IO.Java
|
|
{
|
|
public struct McPackmeta
|
|
{
|
|
[JsonProperty("pack")]
|
|
public McPack Pack;
|
|
public struct McPack
|
|
{
|
|
[JsonIgnore]
|
|
public Image Icon;
|
|
|
|
[JsonIgnore]
|
|
public int Format => _format;
|
|
|
|
[JsonProperty("description")]
|
|
public string Description;
|
|
|
|
[JsonProperty("pack_format")]
|
|
private int _format;
|
|
}
|
|
}
|
|
}
|