using Pathfinding.Serialization; namespace Pathfinding { [JsonOptIn] /// /// Base class for all graph editors. /// Defined here only so non-editor classes can use the field /// public class GraphEditorBase { /// NavGraph this editor is exposing public NavGraph target; } }