aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-07-27 22:20:32 +0100
committerYann Herklotz <ymherklotz@gmail.com>2017-07-27 22:20:32 +0100
commitb35be0d8a0636602076c9c09a1cc2b3c92cb4042 (patch)
treedb3a3321202dbd388824ee5aaca341c35002a6ec
parent3ed3b2395dc6943cddfaa4f6365077b27ef1f480 (diff)
downloadYAGE-b35be0d8a0636602076c9c09a1cc2b3c92cb4042.tar.gz
YAGE-b35be0d8a0636602076c9c09a1cc2b3c92cb4042.zip
Added MIT License to all files
-rw-r--r--include/YAGE/Math/math.hpp8
-rw-r--r--include/YAGE/Math/matrix.hpp8
-rw-r--r--include/YAGE/Physics/body.hpp8
-rw-r--r--include/YAGE/Physics/collider.hpp8
-rw-r--r--include/YAGE/Physics/collisionbody.hpp8
-rw-r--r--include/YAGE/Physics/particlebody.hpp8
-rw-r--r--include/YAGE/Physics/physics.hpp8
-rw-r--r--include/YAGE/Physics/rectanglecollider.hpp8
-rw-r--r--include/YAGE/Physics/rigidbody.hpp8
-rw-r--r--include/YAGE/camera2d.hpp8
-rw-r--r--include/YAGE/glslprogram.hpp8
-rw-r--r--include/YAGE/imageloader.hpp8
-rw-r--r--include/YAGE/inputmanager.hpp8
-rw-r--r--include/YAGE/iomanager.hpp8
-rw-r--r--include/YAGE/picopng.hpp8
-rw-r--r--include/YAGE/resourcemanager.hpp8
-rw-r--r--include/YAGE/sprite.hpp8
-rw-r--r--include/YAGE/spritebatch.hpp8
-rw-r--r--include/YAGE/texture.hpp8
-rw-r--r--include/YAGE/texturecache.hpp8
-rw-r--r--include/YAGE/vertex.hpp8
-rw-r--r--include/YAGE/window.hpp8
-rw-r--r--include/YAGE/yage.hpp8
-rw-r--r--src/body.cpp8
-rw-r--r--src/camera2d.cpp8
-rw-r--r--src/glslprogram.cpp8
-rw-r--r--src/imageloader.cpp8
-rw-r--r--src/inputmanager.cpp8
-rw-r--r--src/iomanager.cpp8
-rw-r--r--src/particlebody.cpp8
-rw-r--r--src/rectanglecollider.cpp8
-rw-r--r--src/resourcemanager.cpp8
-rw-r--r--src/rigidbody.cpp8
-rw-r--r--src/sprite.cpp8
-rw-r--r--src/spritebatch.cpp8
-rw-r--r--src/texturecache.cpp8
-rw-r--r--src/window.cpp8
-rw-r--r--test/matrixtest.cpp8
-rw-r--r--test/rigidbodytest.cpp8
-rw-r--r--test/testbench.cpp8
-rw-r--r--test/testbench.hpp8
41 files changed, 328 insertions, 0 deletions
diff --git a/include/YAGE/Math/math.hpp b/include/YAGE/Math/math.hpp
index 201bf3cb..b587cf9f 100644
--- a/include/YAGE/Math/math.hpp
+++ b/include/YAGE/Math/math.hpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * math.hpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#ifndef YAGE_MATH_HPP
#define YAGE_MATH_HPP
diff --git a/include/YAGE/Math/matrix.hpp b/include/YAGE/Math/matrix.hpp
index 9f1b4fcd..42f5ebbc 100644
--- a/include/YAGE/Math/matrix.hpp
+++ b/include/YAGE/Math/matrix.hpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * matrix.hpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#ifndef YAGE_MATH_MATRIX_HPP
#define YAGE_MATH_MATRIX_HPP
diff --git a/include/YAGE/Physics/body.hpp b/include/YAGE/Physics/body.hpp
index 5a0e879e..49406278 100644
--- a/include/YAGE/Physics/body.hpp
+++ b/include/YAGE/Physics/body.hpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * body.hpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#ifndef YAGE_BODY_HPP
#define YAGE_BODY_HPP
diff --git a/include/YAGE/Physics/collider.hpp b/include/YAGE/Physics/collider.hpp
index 234ff57f..86b2a0c3 100644
--- a/include/YAGE/Physics/collider.hpp
+++ b/include/YAGE/Physics/collider.hpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * collider.hpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#ifndef YAGE_COLLIDER_HPP
#define YAGE_COLLIDER_HPP
diff --git a/include/YAGE/Physics/collisionbody.hpp b/include/YAGE/Physics/collisionbody.hpp
index c5f8e1f6..b7403e81 100644
--- a/include/YAGE/Physics/collisionbody.hpp
+++ b/include/YAGE/Physics/collisionbody.hpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * collisionbody.hpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#ifndef YAGE_COLLISION_BODY_HPP
#define YAGE_COLLISION_BODY_HPP
diff --git a/include/YAGE/Physics/particlebody.hpp b/include/YAGE/Physics/particlebody.hpp
index 62e6fc43..e107cb6a 100644
--- a/include/YAGE/Physics/particlebody.hpp
+++ b/include/YAGE/Physics/particlebody.hpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * particlebody.hpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#ifndef YAGE_PARTICLE_BODY_HPP
#define YAGE_PARTICLE_BODY_HPP
diff --git a/include/YAGE/Physics/physics.hpp b/include/YAGE/Physics/physics.hpp
index efcbefe4..8146672a 100644
--- a/include/YAGE/Physics/physics.hpp
+++ b/include/YAGE/Physics/physics.hpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * physics.hpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#ifndef YAGE_PHYSICS_HPP
#define YAGE_PHYSICS_HPP
diff --git a/include/YAGE/Physics/rectanglecollider.hpp b/include/YAGE/Physics/rectanglecollider.hpp
index b4762ea6..62f11100 100644
--- a/include/YAGE/Physics/rectanglecollider.hpp
+++ b/include/YAGE/Physics/rectanglecollider.hpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * rectanglecollider.hpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#ifndef YAGE_RECTANGLE_COLLIDER_HPP
#define YAGE_RECTANGLE_COLLIDER_HPP
diff --git a/include/YAGE/Physics/rigidbody.hpp b/include/YAGE/Physics/rigidbody.hpp
index 05d8d0ad..c8a2e497 100644
--- a/include/YAGE/Physics/rigidbody.hpp
+++ b/include/YAGE/Physics/rigidbody.hpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * rigidbody.hpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#ifndef YAGE_RIGID_BODY_HPP
#define YAGE_RIGID_BODY_HPP
diff --git a/include/YAGE/camera2d.hpp b/include/YAGE/camera2d.hpp
index 4c035ba3..11d8143f 100644
--- a/include/YAGE/camera2d.hpp
+++ b/include/YAGE/camera2d.hpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * camera2d.hpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#ifndef CAMERA_2D_HPP
#define CAMERA_2D_HPP
diff --git a/include/YAGE/glslprogram.hpp b/include/YAGE/glslprogram.hpp
index 3e03723a..28222ede 100644
--- a/include/YAGE/glslprogram.hpp
+++ b/include/YAGE/glslprogram.hpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * glslprogram.hpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#ifndef GLSL_PROGRAM_HPP
#define GLSL_PROGRAM_HPP
diff --git a/include/YAGE/imageloader.hpp b/include/YAGE/imageloader.hpp
index de190ea4..4c0b5a36 100644
--- a/include/YAGE/imageloader.hpp
+++ b/include/YAGE/imageloader.hpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * imageloader.hpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#ifndef IMAGE_LOADER_HPP
#define IMAGE_LOADER_HPP
diff --git a/include/YAGE/inputmanager.hpp b/include/YAGE/inputmanager.hpp
index fc9e5479..f8a0c710 100644
--- a/include/YAGE/inputmanager.hpp
+++ b/include/YAGE/inputmanager.hpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * inputmanager.hpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#ifndef INPUT_MANAGER_HPP
#define INPUT_MANAGER_HPP
diff --git a/include/YAGE/iomanager.hpp b/include/YAGE/iomanager.hpp
index a0bc22ba..4295c598 100644
--- a/include/YAGE/iomanager.hpp
+++ b/include/YAGE/iomanager.hpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * iomanager.hpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#ifndef IO_MANAGER_HPP
#define IO_MANAGER_HPP
diff --git a/include/YAGE/picopng.hpp b/include/YAGE/picopng.hpp
index 8fea4f0d..0aa6c6d4 100644
--- a/include/YAGE/picopng.hpp
+++ b/include/YAGE/picopng.hpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * picopng.hpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#include <vector>
#include <cstdlib>
diff --git a/include/YAGE/resourcemanager.hpp b/include/YAGE/resourcemanager.hpp
index 61642caf..10f6cbb8 100644
--- a/include/YAGE/resourcemanager.hpp
+++ b/include/YAGE/resourcemanager.hpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * resourcemanager.hpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#ifndef RESOURCE_MANAGER_HPP
#define RESOURCE_MANAGER_HPP
diff --git a/include/YAGE/sprite.hpp b/include/YAGE/sprite.hpp
index fa214686..9e5aca8b 100644
--- a/include/YAGE/sprite.hpp
+++ b/include/YAGE/sprite.hpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * sprite.hpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#ifndef SPRITE_HPP
#define SPRITE_HPP
diff --git a/include/YAGE/spritebatch.hpp b/include/YAGE/spritebatch.hpp
index c5a55b17..61efd0aa 100644
--- a/include/YAGE/spritebatch.hpp
+++ b/include/YAGE/spritebatch.hpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * spritebatch.hpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#ifndef SPRITE_BATCH_HPP
#define SPRITE_BATCH_HPP
diff --git a/include/YAGE/texture.hpp b/include/YAGE/texture.hpp
index c72c80d7..34accaca 100644
--- a/include/YAGE/texture.hpp
+++ b/include/YAGE/texture.hpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * texture.hpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#ifndef GL_TEXTURE_HPP
#define GL_TEXTURE_HPP
diff --git a/include/YAGE/texturecache.hpp b/include/YAGE/texturecache.hpp
index 4969b27b..158f81ee 100644
--- a/include/YAGE/texturecache.hpp
+++ b/include/YAGE/texturecache.hpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * texturecache.hpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#ifndef TEXTURE_CACHE_HPP
#define TEXTURE_CACHE_HPP
diff --git a/include/YAGE/vertex.hpp b/include/YAGE/vertex.hpp
index bbf8a7d3..a3848490 100644
--- a/include/YAGE/vertex.hpp
+++ b/include/YAGE/vertex.hpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * vertex.hpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#ifndef VERTEX_HPP
#define VERTEX_HPP
diff --git a/include/YAGE/window.hpp b/include/YAGE/window.hpp
index d86c00ac..98ba2592 100644
--- a/include/YAGE/window.hpp
+++ b/include/YAGE/window.hpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * window.hpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#ifndef WINDOW_HPP
#define WINDOW_HPP
diff --git a/include/YAGE/yage.hpp b/include/YAGE/yage.hpp
index cec03d00..1045e12b 100644
--- a/include/YAGE/yage.hpp
+++ b/include/YAGE/yage.hpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * yage.hpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#ifndef YAGE_HPP
#define YAGE_HPP
diff --git a/src/body.cpp b/src/body.cpp
index e942d617..524a92ee 100644
--- a/src/body.cpp
+++ b/src/body.cpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * body.cpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#include "Physics/body.hpp"
namespace yage
diff --git a/src/camera2d.cpp b/src/camera2d.cpp
index 81e8d971..0b60b7c6 100644
--- a/src/camera2d.cpp
+++ b/src/camera2d.cpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * camera2d.cpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#include "camera2d.hpp"
#include <GL/glew.h>
diff --git a/src/glslprogram.cpp b/src/glslprogram.cpp
index f9795a34..acb81f56 100644
--- a/src/glslprogram.cpp
+++ b/src/glslprogram.cpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * glslprogram.cpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#include "glslprogram.hpp"
#include <fstream>
diff --git a/src/imageloader.cpp b/src/imageloader.cpp
index cca71844..241cf588 100644
--- a/src/imageloader.cpp
+++ b/src/imageloader.cpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * imageloader.cpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#include "imageloader.hpp"
#include "iomanager.hpp"
#include "picopng.hpp"
diff --git a/src/inputmanager.cpp b/src/inputmanager.cpp
index 402cc420..c9c80d93 100644
--- a/src/inputmanager.cpp
+++ b/src/inputmanager.cpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * inputmanager.cpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#include "inputmanager.hpp"
namespace yage
diff --git a/src/iomanager.cpp b/src/iomanager.cpp
index 697273dc..bcb1dcd0 100644
--- a/src/iomanager.cpp
+++ b/src/iomanager.cpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * iomanager.cpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#include "iomanager.hpp"
#include <fstream>
diff --git a/src/particlebody.cpp b/src/particlebody.cpp
index 748f80cd..a66489e9 100644
--- a/src/particlebody.cpp
+++ b/src/particlebody.cpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * particlebody.cpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#include "Physics/particlebody.hpp"
#include <iostream>
diff --git a/src/rectanglecollider.cpp b/src/rectanglecollider.cpp
index 812b10d1..0f5ee302 100644
--- a/src/rectanglecollider.cpp
+++ b/src/rectanglecollider.cpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * rectanglecollider.cpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#include "Physics/rectanglecollider.hpp"
namespace yage
diff --git a/src/resourcemanager.cpp b/src/resourcemanager.cpp
index 4105f4e4..8341557c 100644
--- a/src/resourcemanager.cpp
+++ b/src/resourcemanager.cpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * resourcemanager.cpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#include "resourcemanager.hpp"
namespace yage
diff --git a/src/rigidbody.cpp b/src/rigidbody.cpp
index 62032b74..f2069c4a 100644
--- a/src/rigidbody.cpp
+++ b/src/rigidbody.cpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * rigidbody.cpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#include "Physics/rigidbody.hpp"
namespace yage
diff --git a/src/sprite.cpp b/src/sprite.cpp
index cd8f328d..2ba39e2e 100644
--- a/src/sprite.cpp
+++ b/src/sprite.cpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * sprite.cpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#include "sprite.hpp"
#include "resourcemanager.hpp"
#include "vertex.hpp"
diff --git a/src/spritebatch.cpp b/src/spritebatch.cpp
index a530a0ac..4018b3e2 100644
--- a/src/spritebatch.cpp
+++ b/src/spritebatch.cpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * spritebatch.cpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#include "spritebatch.hpp"
#include <algorithm>
diff --git a/src/texturecache.cpp b/src/texturecache.cpp
index ca47217e..bc48c4e0 100644
--- a/src/texturecache.cpp
+++ b/src/texturecache.cpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * texturecache.cpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#include "imageloader.hpp"
#include "texturecache.hpp"
diff --git a/src/window.cpp b/src/window.cpp
index 37c3b16d..60cdb4ef 100644
--- a/src/window.cpp
+++ b/src/window.cpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * window.cpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#include "window.hpp"
#include <GL/glew.h>
diff --git a/test/matrixtest.cpp b/test/matrixtest.cpp
index b24e6a89..c84118df 100644
--- a/test/matrixtest.cpp
+++ b/test/matrixtest.cpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * matrixtest.cpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#include "Math/math.hpp"
#include "testbench.hpp"
diff --git a/test/rigidbodytest.cpp b/test/rigidbodytest.cpp
index 11efd20d..f3ad61f3 100644
--- a/test/rigidbodytest.cpp
+++ b/test/rigidbodytest.cpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * rigidbodytest.cpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#include "Physics/particlebody.hpp"
#include <iostream>
diff --git a/test/testbench.cpp b/test/testbench.cpp
index 42bf357f..eb09a82d 100644
--- a/test/testbench.cpp
+++ b/test/testbench.cpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * testbench.cpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#include "testbench.hpp"
#include <algorithm>
diff --git a/test/testbench.hpp b/test/testbench.hpp
index 574561af..a5b8853d 100644
--- a/test/testbench.hpp
+++ b/test/testbench.hpp
@@ -1,3 +1,11 @@
+/* ----------------------------------------------------------------------------
+ * testbench.hpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
#ifndef TEST_BENCH_HPP
#define TEST_BENCH_HPP