Initial commit, yay

This commit is contained in:
VegOwOtenks 2024-06-13 15:28:21 +02:00
commit 25e26756cd
85 changed files with 7077 additions and 0 deletions

View file

@ -0,0 +1 @@
add_library(QuadTree STATIC QuadTree.c)

1
src/QuadTree/QuadTree.c Normal file
View file

@ -0,0 +1 @@
#include "QuadTree.h"

8
src/QuadTree/QuadTree.h Normal file
View file

@ -0,0 +1,8 @@
#ifndef UTILITIEC_QUADTREE_H
#define UTILITIEC_QUADTREE_H
typedef struct QuadTree_s {
} QuadTree;
#endif