PckStudio - Fix typo in csproj file

This commit is contained in:
miku-666
2025-11-25 05:07:03 +01:00
parent 71518bed8c
commit 42594e7029
22 changed files with 5 additions and 5 deletions

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