GLTFIndexedChildRootProperty.cs 211 B

12345678910
  1. using System.Runtime.Serialization;
  2. namespace GLTFExport.Entities
  3. {
  4. [DataContract]
  5. public class GLTFIndexedChildRootProperty : GLTFChildRootProperty
  6. {
  7. public int index;
  8. }
  9. }