mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-17 01:13:05 +00:00
f7ed57a787
This reverts commit c049b94527
.
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);
|
|
} |