mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-22 21:45:30 +00:00
19 lines
312 B
C#
19 lines
312 B
C#
using System.Drawing;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace PckStudio.Core.IO.Java
|
|
{
|
|
public struct McPack
|
|
{
|
|
[JsonIgnore]
|
|
public Image Icon;
|
|
|
|
[JsonProperty("pack_format")]
|
|
public int Format;
|
|
|
|
[JsonProperty("description")]
|
|
public string Description;
|
|
}
|
|
}
|
|
|