mirror of
https://github.com/Kizuren/SynthMaze.git
synced 2025-12-24 16:24:03 +01:00
10 lines
295 B
C#
10 lines
295 B
C#
using Pathfinding.Serialization;
|
|
|
|
namespace Pathfinding {
|
|
[JsonOptIn]
|
|
/// <summary>Defined here only so non-editor classes can use the <see cref="target"/> field</summary>
|
|
public class GraphEditorBase {
|
|
/// <summary>NavGraph this editor is exposing</summary>
|
|
public NavGraph target;
|
|
}
|
|
}
|