mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-27 13:54:44 +00:00
18 lines
371 B
C#
18 lines
371 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
namespace PckStudio.ModelSupport
|
|
{
|
|
public readonly struct NamedTexture
|
|
{
|
|
public readonly string Name;
|
|
public readonly Image Texture;
|
|
|
|
public NamedTexture(string name, Image texture)
|
|
{
|
|
Name = name;
|
|
Texture = texture;
|
|
}
|
|
}
|
|
}
|