using System; using System.Collections.Generic; namespace Oni.Dae { internal class Geometry : Entity { public readonly List primitives = new List(1); public readonly List vertices = new List(1); public List Vertices => vertices; public List Primitives => primitives; } }