IMHOTEP Framework
 All Classes Namespaces Functions Variables Enumerations Enumerator Properties Pages
MeshJson.cs
1 using System.Collections.Generic;
2 
5 public class MeshListElement
6 {
7  public string name;
8  public string color;
9 }
10 
12 public class MeshJson
13 {
15  public string pathToBlendFile;
16 
18  public List<MeshListElement> meshList;
19 
20  public MeshJson()
21  {
22  meshList = new List<MeshListElement>();
23  }
24 }
List< MeshListElement > meshList
Definition: MeshJson.cs:18
string pathToBlendFile
Definition: MeshJson.cs:15