Restructuring of the files
This commit is contained in:
16
Facepunch.Steamworks/Structs/MatchMakingKeyValuePair.cs
Normal file
16
Facepunch.Steamworks/Structs/MatchMakingKeyValuePair.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user