Files
RobustToolbox/Lidgren.Network/NetTuple.cs
T
Pieter-Jan BriersandGitHub a0c1415873 Update Lidgren to master from the repo. (#979)
Should improve stability or whatever. Also some convenient stream features.
2020-02-15 01:21:30 +01:00

20 lines
306 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Lidgren.Network
{
// replace with BCL 4.0 Tuple<> when appropriate
internal struct NetTuple<A, B>
{
public A Item1;
public B Item2;
public NetTuple(A item1, B item2)
{
Item1 = item1;
Item2 = item2;
}
}
}