11 lines
176 B
C#
11 lines
176 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
[Serializable]
|
|
public class MegaBindVert
|
|
{
|
|
public float weight;
|
|
|
|
public List<MegaBindInf> verts = new List<MegaBindInf>();
|
|
}
|