octree

octree tools and accessories
git clone git://nsmpr.xyz/octree.git
Log | Files | Refs

commit 4f249861bda9257aae0b8568da0f352b4e28cab2
parent cc544ca3d56234599f71a2a9973ee2d13dd30840
Author: glenda <glenda@9front.local>
Date:   Mon, 15 Mar 2021 22:17:53 +0000

octree.h: add missing header file

Diffstat:
Aoctree.h | 9+++++++++
1 file changed, 9 insertions(+), 0 deletions(-)

diff --git a/octree.h b/octree.h @@ -0,0 +1,9 @@ +#define NODESIZE 64 + +typedef struct Node Node; + +struct Node { + u64int id; + u64int flags; + char data[NODESIZE-sizeof(u64int) * 2]; +};