source: OniSplit/Dae/Geometry.cs@ 1177

Last change on this file since 1177 was 1114, checked in by iritscen, 5 years ago

Adding OniSplit source code (v0.9.99.0). Many thanks to Neo for all his work over the years.

File size: 403 bytes
Line 
1using System;
2using System.Collections.Generic;
3
4namespace Oni.Dae
5{
6 internal class Geometry : Entity
7 {
8 public readonly List<MeshPrimitives> primitives = new List<MeshPrimitives>(1);
9 public readonly List<Input> vertices = new List<Input>(1);
10
11 public List<Input> Vertices => vertices;
12 public List<MeshPrimitives> Primitives => primitives;
13 }
14}
Note: See TracBrowser for help on using the repository browser.