mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-22 17:45:09 +00:00
18 lines
367 B
C#
18 lines
367 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace PckStudio.Core.IO.Java
|
|
{
|
|
public struct McPackmeta
|
|
{
|
|
[JsonProperty("pack")]
|
|
public McPack Pack;
|
|
public struct McPack
|
|
{
|
|
[JsonProperty("pack_format")]
|
|
public int Format;
|
|
[JsonProperty("description")]
|
|
public string Description;
|
|
}
|
|
}
|
|
}
|