mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-06-28 14:35:35 +00:00
PckStudio - Fix typo in csproj file
This commit is contained in:
20
PckStudio.ModelSupport/GameModelInfo.cs
Normal file
20
PckStudio.ModelSupport/GameModelInfo.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System.Collections.Generic;
|
||||
using OMI.Formats.Model;
|
||||
using NamedTexture = PckStudio.Core.NamedData<System.Drawing.Image>;
|
||||
|
||||
namespace PckStudio.ModelSupport
|
||||
{
|
||||
public sealed class GameModelInfo
|
||||
{
|
||||
public Model Model { get; }
|
||||
|
||||
public IEnumerable<NamedTexture> Textures { get; }
|
||||
|
||||
public GameModelInfo(Model model, IEnumerable<NamedTexture> textures)
|
||||
{
|
||||
Model = model;
|
||||
Textures = textures;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user