From d53a1c9d20da76d38c54db60618377142c14a460 Mon Sep 17 00:00:00 2001 From: Rhys van der Waerden Date: Fri, 15 Apr 2022 20:24:08 +1000 Subject: [PATCH] Remove unused dependencies in example These are not required for the code example. --- README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.md b/README.md index 9e9e3556..ba7d08dc 100644 --- a/README.md +++ b/README.md @@ -14,11 +14,8 @@ Based on Unity's GraphView technology, NodeGraphProcessor is also very fast and Simple and powerful C# node API to create new nodes and custom views. ```CSharp -using System.Collections; -using System.Collections.Generic; using UnityEngine; using GraphProcessor; -using System.Linq; [System.Serializable, NodeMenuItem("Operations/Sub")] // Add the node in the node creation context menu public class SubNode : BaseNode