server-master/srcs/_plugins/Plugin.CoreImpl/Pathfinding/PathFinderNodeFast.cs
2026-02-10 18:21:30 +01:00

14 lines
No EOL
375 B
C#

using System.Runtime.InteropServices;
namespace Plugin.CoreImpl.Pathfinding
{
[StructLayout(LayoutKind.Sequential, Pack = 1)]
internal struct PathFinderNodeFast
{
public int F_Gone_Plus_Heuristic; // f = gone + heuristic
public int Gone;
public short ParentX; // Parent
public short ParentY;
public byte Status;
}
}