Files
2025-06-17 16:38:11 +03:00

17 lines
401 B
C#

using System;
using System.Runtime.InteropServices;
namespace Steamworks.Data
{
[StructLayout( LayoutKind.Sequential, Pack = Platform.StructPackSize, CharSet = CharSet.Ansi )]
internal partial struct MatchMakingKeyValuePair
{
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 256)]
internal string Key;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 256)]
internal string Value;
}
}