using CodeImp.DoomBuilder.Rendering; using System.Collections.Generic; namespace CodeImp.DoomBuilder.GZBuilder.Models { internal class ModelLoadResult { public List Skins = new List(); public List Meshes = new List(); public string Errors; } }