summaryrefslogtreecommitdiff
path: root/Other/AstarPathfindingDemo/Packages/com.arongranberg.astar/Editor/RuleEditors/GridGraphRuleEditor.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Other/AstarPathfindingDemo/Packages/com.arongranberg.astar/Editor/RuleEditors/GridGraphRuleEditor.cs')
-rw-r--r--Other/AstarPathfindingDemo/Packages/com.arongranberg.astar/Editor/RuleEditors/GridGraphRuleEditor.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/Other/AstarPathfindingDemo/Packages/com.arongranberg.astar/Editor/RuleEditors/GridGraphRuleEditor.cs b/Other/AstarPathfindingDemo/Packages/com.arongranberg.astar/Editor/RuleEditors/GridGraphRuleEditor.cs
new file mode 100644
index 0000000..a4f941c
--- /dev/null
+++ b/Other/AstarPathfindingDemo/Packages/com.arongranberg.astar/Editor/RuleEditors/GridGraphRuleEditor.cs
@@ -0,0 +1,7 @@
+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);
+ }
+}