Files
BABA_YAGA/Packages/com.arongranberg.astar/Editor/RuleEditors/GridGraphRuleEditor.cs
2026-06-11 22:49:50 +07:00

8 lines
277 B
C#

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