summaryrefslogtreecommitdiff
path: root/Assembly_Firstpass/Steamworks/SteamNetworkPingLocation_t.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Assembly_Firstpass/Steamworks/SteamNetworkPingLocation_t.cs')
-rw-r--r--Assembly_Firstpass/Steamworks/SteamNetworkPingLocation_t.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/Assembly_Firstpass/Steamworks/SteamNetworkPingLocation_t.cs b/Assembly_Firstpass/Steamworks/SteamNetworkPingLocation_t.cs
new file mode 100644
index 0000000..6ba468f
--- /dev/null
+++ b/Assembly_Firstpass/Steamworks/SteamNetworkPingLocation_t.cs
@@ -0,0 +1,10 @@
+using System.Runtime.InteropServices;
+
+namespace Steamworks;
+
+[StructLayout(LayoutKind.Sequential, Pack = 8)]
+public struct SteamNetworkPingLocation_t
+{
+ [MarshalAs(UnmanagedType.ByValArray, SizeConst = 512)]
+ public byte[] m_data;
+}