mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-07-12 14:18:19 +00:00
Move Common functionality to Core project & rendering and Model support as well
This commit is contained in:
19
PckStuido.ModelSupport/GameModelInfo.cs
Normal file
19
PckStuido.ModelSupport/GameModelInfo.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System.Collections.Generic;
|
||||
using OMI.Formats.Model;
|
||||
|
||||
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