IMHOTEP Framework
 All Classes Namespaces Functions Variables Enumerations Enumerator Properties Pages
PolygonListEntry.cs
1 using System;
2 using System.Collections.Generic;
3 using UnityEngine;
4 
5 namespace BlenderMeshReader
6 {
7 
9  {
10  public int StartIndex { get; private set; }
11  public int Lenght { get; private set; }
12 
13  public PolygonListEntry(int startIndex, int length)
14  {
15  this.StartIndex = startIndex;
16  this.Lenght = length;
17  }
18  }
19 }