Initial commit, yay
This commit is contained in:
commit
25e26756cd
85 changed files with 7077 additions and 0 deletions
1
src/QuadTree/CMakeLists.txt
Normal file
1
src/QuadTree/CMakeLists.txt
Normal file
|
@ -0,0 +1 @@
|
|||
add_library(QuadTree STATIC QuadTree.c)
|
1
src/QuadTree/QuadTree.c
Normal file
1
src/QuadTree/QuadTree.c
Normal file
|
@ -0,0 +1 @@
|
|||
#include "QuadTree.h"
|
8
src/QuadTree/QuadTree.h
Normal file
8
src/QuadTree/QuadTree.h
Normal file
|
@ -0,0 +1,8 @@
|
|||
#ifndef UTILITIEC_QUADTREE_H
|
||||
#define UTILITIEC_QUADTREE_H
|
||||
|
||||
typedef struct QuadTree_s {
|
||||
|
||||
} QuadTree;
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue