CopyPasteHelper.cs 384 B

12345678910111213141516
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace GraphProcessor
  5. {
  6. [System.Serializable]
  7. public class CopyPasteHelper
  8. {
  9. public List< JsonElement > copiedNodes = new List< JsonElement >();
  10. public List< JsonElement > copiedGroups = new List< JsonElement >();
  11. public List< JsonElement > copiedEdges = new List< JsonElement >();
  12. }
  13. }