namespace Pathfinding.Graphs.Grid.Rules { /// Common interface for all grid graph rule editors public interface IGridGraphRuleEditor { void OnInspectorGUI(GridGraph graph, GridGraphRule rule); void OnSceneGUI(GridGraph graph, GridGraphRule rule); } }