diff options
Diffstat (limited to '')
-rw-r--r-- | NW4RTools/Types.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/NW4RTools/Types.cs b/NW4RTools/Types.cs index 619303e..9bfa0db 100644 --- a/NW4RTools/Types.cs +++ b/NW4RTools/Types.cs @@ -1,6 +1,16 @@ using System; namespace NW4RTools { + public struct Pair<TOne, TTwo> { + public TOne one; + public TTwo two; + + public Pair(TOne _one, TTwo _two) { + one = _one; + two = _two; + } + } + public enum ByteEndian { LittleEndian, BigEndian |