From 94c654f0cc328c301ce2d3f9644edde57e84444a Mon Sep 17 00:00:00 2001 From: Carlos Sanchez Date: Mon, 12 Aug 2024 20:29:39 -0400 Subject: [PATCH] Initial commit --- .gitignore | 29 +++++++++++++++++++++++++++++ README.md | 17 +++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 .gitignore create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..86d89f8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,29 @@ +# A place to put garbage +ignore/ + +# Various files +*.obj +*.cam +*.tar.gz +callgrind.* + +# Images +*.ppm +*.png +*.gif +*.jpg +*.jpeg +*.mp4 + +# Libraries +*.o +*.a +*.dll + +# Editor +*.swp +*.swo + +# Binaries +*.exe +a.out diff --git a/README.md b/README.md new file mode 100644 index 0000000..df0d312 --- /dev/null +++ b/README.md @@ -0,0 +1,17 @@ +# 3D Toys + +Everything in here is a little sample program or otherwise which +uses [haloo3d](https://github.com/randomouscrap98/haloo3d) and +[unigi](https://git.lumen.sh/Fierelier/unigi). + +The libraries required are set as submodules, so you can pull them +with: + +``` +git submodule update --init +``` + +You don't need to pull in the submodules if you setup your includes +and stuff. + +