mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-02-10 17:51:00 +00:00
13 lines
312 B
C#
13 lines
312 B
C#
|
using CodeImp.DoomBuilder.Rendering;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace CodeImp.DoomBuilder.GZBuilder.Models
|
|||
|
{
|
|||
|
internal class ModelLoadResult
|
|||
|
{
|
|||
|
public List<string> Skins = new List<string>();
|
|||
|
public List<Mesh> Meshes = new List<Mesh>();
|
|||
|
public string Errors;
|
|||
|
}
|
|||
|
}
|