mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-22 17:05:10 +00:00
15 lines
308 B
C#
15 lines
308 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PckStudio.Core
|
|
{
|
|
public readonly struct NamedData<T>(string name, T value)
|
|
{
|
|
public readonly string Name = name;
|
|
public readonly T Value = value;
|
|
}
|
|
}
|