mirror of
https://github.com/Kizuren/ShantiManti.git
synced 2025-12-23 15:53:38 +01:00
10 lines
295 B (Stored with Git LFS)
C#
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;
|
|
}
|
|
}
|