You've already forked lidgren-network-gen3
mirror of
https://github.com/lidgren/lidgren-network-gen3.git
synced 2026-05-06 02:11:06 +09:00
20 lines
325 B
C#
20 lines
325 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;
|
|
}
|
|
}
|
|
}
|