blob: a4f941cf38630da549534bb2f70cc93662257d74 (
plain)
1
2
3
4
5
6
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);
}
}
|