0
0
Fork 0
mirror of https://git.do.srb2.org/STJr/UltimateZoneBuilder.git synced 2025-03-05 01:10:47 +00:00
UltimateZoneBuilder/Source/Core/GZBuilder/md3/GZModel.cs
2019-08-08 03:51:21 +02:00

18 lines
No EOL
374 B
C#
Executable file

using System.Collections.Generic;
using CodeImp.DoomBuilder.Rendering;
namespace CodeImp.DoomBuilder.GZBuilder.MD3
{
internal class GZModel
{
internal readonly List<Mesh> Meshes;
internal readonly List<Texture> Textures;
internal float Radius;
internal GZModel()
{
Meshes = new List<Mesh>();
Textures = new List<Texture>();
}
}
}