From 49b25e755b70ec412feaaf0b898d6f7e09d2bea6 Mon Sep 17 00:00:00 2001 From: chai Date: Tue, 28 Jun 2022 09:40:37 +0800 Subject: +node example --- Other/NodeEditorExamples/Assets/UNEB/Utility/Pair.cs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Other/NodeEditorExamples/Assets/UNEB/Utility/Pair.cs (limited to 'Other/NodeEditorExamples/Assets/UNEB/Utility/Pair.cs') diff --git a/Other/NodeEditorExamples/Assets/UNEB/Utility/Pair.cs b/Other/NodeEditorExamples/Assets/UNEB/Utility/Pair.cs new file mode 100644 index 00000000..dfff1249 --- /dev/null +++ b/Other/NodeEditorExamples/Assets/UNEB/Utility/Pair.cs @@ -0,0 +1,20 @@ + +namespace UNEB.Utility +{ + /// + /// Simple pair tuple. + /// + /// + /// + public class Pair + { + public readonly T1 item1; + public readonly T2 item2; + + public Pair(T1 item1, T2 item2) + { + this.item1 = item1; + this.item2 = item2; + } + } +} \ No newline at end of file -- cgit v1.1-26-g67d0