Files
PCK-Studio/PckStuido.ModelSupport/NamedTexture.cs

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;
}
}
}