mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-22 13:05:10 +00:00
13 lines
333 B
C#
13 lines
333 B
C#
using System;
|
|
using System.Collections.Specialized;
|
|
using System.Linq;
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
namespace PckStudio.Core.IO.Java
|
|
{
|
|
public readonly struct ImportResult<TResult, TStats>(TResult result, TStats stats)
|
|
{
|
|
public readonly TResult Result = result;
|
|
public readonly TStats Stats = stats;
|
|
}
|
|
} |