Files
LuaCsForBarotraumaEP/Libraries/Facepunch.Steamworks/Structs/MatchMakingKeyValuePair.cs
2020-01-10 14:42:38 -03:00

17 lines
369 B
C#

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