Files
BoneSync/Facepunch.Steamworks/Structs/MatchMakingKeyValuePair.cs
2025-02-25 12:58:41 +02:00

17 lines
387 B
C#

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