blob: 618914b83e6d9b944d19b03cb8993c0dfcd1a09b (
plain)
1
2
3
4
5
6
7
|
using System.Runtime.InteropServices;
using System.Text;
namespace Steamworks;
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate void FSteamNetworkingSocketsDebugOutput(ESteamNetworkingSocketsDebugOutputType nType, StringBuilder pszMsg);
|