rj-action-library/Runtime/Structures/Spatial/QuadTree/QuadTreeNode.cs

14 lines
179 B
C#
Raw Normal View History

2025-09-26 12:00:59 +00:00
using System.Collections;
using System.Collections.Generic;
using Godot;
using System;
namespace Rokojori
{
2025-09-28 08:42:28 +00:00
public class QuadTreeNode<T,D>
2025-09-26 12:00:59 +00:00
{
2025-09-28 08:42:28 +00:00
public D nodeData;
2025-09-26 12:00:59 +00:00
}
}