20 lines
378 B
C#
20 lines
378 B
C#
|
using System;
|
|||
|
using System.Runtime.InteropServices;
|
|||
|
|
|||
|
namespace Zodiacon.DebugHelp
|
|||
|
{
|
|||
|
// Token: 0x02000016 RID: 22
|
|||
|
internal struct FindChildrenParams
|
|||
|
{
|
|||
|
// Token: 0x040000C0 RID: 192
|
|||
|
public int Count;
|
|||
|
|
|||
|
// Token: 0x040000C1 RID: 193
|
|||
|
public int Start;
|
|||
|
|
|||
|
// Token: 0x040000C2 RID: 194
|
|||
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 400)]
|
|||
|
public int[] Child;
|
|||
|
}
|
|||
|
}
|