blob: fa6d76849fcce5b1139bc68d6920511f7455c79f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
using System.Runtime.InteropServices;
namespace Steamworks;
public struct MatchMakingKeyValuePair_t
{
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 256)]
public string m_szKey;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 256)]
public string m_szValue;
private MatchMakingKeyValuePair_t(string strKey, string strValue)
{
m_szKey = strKey;
m_szValue = strValue;
}
}
|