CapersProject/Packages/com.arongranberg.astar/Core/Misc/GraphEditorBase.cs

14 lines
346 B
C#
Raw Normal View History

2024-06-03 18:26:03 +00:00
using Pathfinding.Serialization;
namespace Pathfinding {
[JsonOptIn]
/// <summary>
/// Base class for all graph editors.
/// 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;
}
}