10 lines
208 B
C#
10 lines
208 B
C#
using System.Runtime.InteropServices;
|
|
|
|
public struct ovrAvatarBlendShapeParams
|
|
{
|
|
public uint blendShapeParamCount;
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 64)]
|
|
public float[] blendShapeParams;
|
|
}
|