ShantiManti/Assets/AstarPathfindingProject/Core/Misc/GraphEditorBase.cs
2024-04-28 13:51:52 +02:00

10 lines
295 B (Stored with Git LFS)
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;
}
}