mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-24 02:16:01 +00:00
Move JavaResourcePackConverter to its own cs proj
This commit is contained in:
13
JavaResourcePackConverter/Java/ImportResult.cs
Normal file
13
JavaResourcePackConverter/Java/ImportResult.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user