Files
PCK-Studio/JavaResourcePackConverter/Java/McPack.cs

19 lines
315 B
C#

using System.Drawing;
using Newtonsoft.Json;
namespace JavaResourcePackConverter
{
public struct McPack
{
[JsonIgnore]
public Image Icon;
[JsonProperty("pack_format")]
public int Format;
[JsonProperty("description")]
public string Description;
}
}