10 lines
200 B
C#
10 lines
200 B
C#
using System.Runtime.InteropServices;
|
|
|
|
public struct ovrAvatarGazeTargets
|
|
{
|
|
public uint targetCount;
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 128)]
|
|
public ovrAvatarGazeTarget[] targets;
|
|
}
|