mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-29 09:32:38 +00:00
f7ed57a787
This reverts commit c049b94527a16c3ae0f04c644362cf5b3f3f114b.
9 lines
271 B
C#
9 lines
271 B
C#
using Steamworks;
|
|
using System;
|
|
|
|
public class FizzyConnectionManager : ConnectionManager
|
|
{
|
|
public Action<IntPtr, int> ForwardMessage;
|
|
|
|
public override void OnMessage(IntPtr data, int size, long messageNum, long recvTime, int channel) => ForwardMessage(data, size);
|
|
} |