Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
using System;
using System.IO;
using System.Linq;
using System.Collections.Generic;
using MLAPI.Serialization.Pooled;
using MLAPI.Serialization;
using MLAPI.Configuration;
using MLAPI.Profiling;
using MLAPI.Messaging;
using MLAPI.Transports;
using System.Collections.Generic;
using System.Linq;
using System;
using System.IO;

namespace MLAPI
namespace MLAPI.Messaging
{
internal class RpcBatcher
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ private void RPCQueueSendAndFlush()
/// </summary>
/// <param name="clientId"> clientId to send to</param>
/// <param name="sendStream"> the stream to send</param>
private static void SendCallback(ulong clientId, MLAPI.RpcBatcher.SendStream sendStream)
private static void SendCallback(ulong clientId, RpcBatcher.SendStream sendStream)
{
var length = (int)sendStream.Stream.Length;
var bytes = sendStream.Stream.GetBuffer();
Expand Down