mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-29 07:01:55 +00:00
12 lines
312 B
C#
12 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;
|
|
}
|
|
}
|