OnTopReplica/OnTopReplica/Pair.cs
Lorenz Cuno Klopfenstein 3ad9a6eb11 Working language selection box in options side panel.
Added custom combo box with image support.
2011-03-24 02:31:22 +01:00

21 lines
388 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace OnTopReplica {
/// <summary>
/// Simple tuple with two values.
/// </summary>
struct Pair<T1, T2> {
public T1 Item1;
public T2 Item2;
public Pair(T1 value1, T2 value2) {
Item1 = value1;
Item2 = value2;
}
}
}