mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-01 03:32:38 +00:00
f7ed57a787
This reverts commit c049b94527
.
10 lines
355 B
C#
10 lines
355 B
C#
using Steamworks;
|
|
using Steamworks.Data;
|
|
using System;
|
|
|
|
public class FizzySocketManager : SocketManager
|
|
{
|
|
public Action<Connection, IntPtr, int> ForwardMessage;
|
|
|
|
public override void OnMessage(Connection connection, NetIdentity identity, IntPtr data, int size, long messageNum, long recvTime, int channel) => ForwardMessage(connection, data, size);
|
|
} |