using Godot; using System.Collections.Generic; using Rokojori.Extensions; namespace Rokojori { public enum PresetPass { Prefly, Prepare, Process, Post } public class PresetContext { public Node root; public AppPreset appPreset; public PresetPass pass; } }