blob: 1c3b1e5f049207ce488db9c14cb612414f86a34e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
using System;
using System.Runtime.InteropServices;
namespace Steamworks;
[StructLayout(LayoutKind.Sequential, Pack = 8)]
public struct SteamParamStringArray_t
{
public IntPtr m_ppStrings;
public int m_nNumStrings;
}
|