blob: 4e867db20df0557760f2fd8ecdd0844a2266bb21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
using System;
namespace Steamworks;
[Serializable]
public struct ISteamNetworkingConnectionSignaling
{
public bool SendSignal(HSteamNetConnection hConn, ref SteamNetConnectionInfo_t info, IntPtr pMsg, int cbMsg)
{
return NativeMethods.SteamAPI_ISteamNetworkingConnectionSignaling_SendSignal(ref this, hConn, ref info, pMsg, cbMsg);
}
public void Release()
{
NativeMethods.SteamAPI_ISteamNetworkingConnectionSignaling_Release(ref this);
}
}
|