mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-12-02 00:22:09 +00:00
20 lines
No EOL
448 B
C#
20 lines
No EOL
448 B
C#
using System.Collections.Generic;
|
|
using CodeImp.DoomBuilder.Rendering;
|
|
using CodeImp.DoomBuilder.GZBuilder.Data;
|
|
|
|
namespace CodeImp.DoomBuilder.GZBuilder.Models
|
|
{
|
|
internal class GZModel
|
|
{
|
|
internal readonly List<Mesh> Meshes;
|
|
internal readonly List<Texture> Textures;
|
|
internal float Radius;
|
|
internal BoundingBoxSizes BBox;
|
|
|
|
internal GZModel()
|
|
{
|
|
Meshes = new List<Mesh>();
|
|
Textures = new List<Texture>();
|
|
}
|
|
}
|
|
} |