Fixed networking references errors.

This commit is contained in:
MapleWheels
2026-02-03 19:48:35 -05:00
committed by Maplewheels
parent cae3741953
commit 9cc20a03c0
6 changed files with 21 additions and 32 deletions
@@ -50,7 +50,7 @@ partial class NetworkingService : INetworkingService
throw new NotImplementedException();
}
public INetWriteMessage Start(Guid netId)
public IWriteMessage Start(Guid netId)
{
var message = new WriteOnlyMessage();
@@ -67,7 +67,7 @@ partial class NetworkingService : INetworkingService
message.WriteBytes(netId.ToByteArray(), 0, 16);
}
return message.ToNetWriteMessage();
return message;
}
public void RequestId(Guid netId)