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

13 lines
336 B
C#

using System;
using System.Collections.Specialized;
using System.Linq;
using Newtonsoft.Json.Linq;
namespace JavaResourcePackConverter
{
public readonly struct ImportResult<TResult, TStats>(TResult result, TStats stats)
{
public readonly TResult Result = result;
public readonly TStats Stats = stats;
}
}