summaryrefslogtreecommitdiff
path: root/Other/AstarPathfindingDemo/Packages/com.arongranberg.astar/Core/Misc/GraphEditorBase.cs
blob: 17f5828c02a4fee58ae2e29d12131bec816f7124 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
	}
}