From b35be0d8a0636602076c9c09a1cc2b3c92cb4042 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Thu, 27 Jul 2017 22:20:32 +0100 Subject: Added MIT License to all files --- include/YAGE/Math/math.hpp | 8 ++++++++ include/YAGE/Math/matrix.hpp | 8 ++++++++ include/YAGE/Physics/body.hpp | 8 ++++++++ include/YAGE/Physics/collider.hpp | 8 ++++++++ include/YAGE/Physics/collisionbody.hpp | 8 ++++++++ include/YAGE/Physics/particlebody.hpp | 8 ++++++++ include/YAGE/Physics/physics.hpp | 8 ++++++++ include/YAGE/Physics/rectanglecollider.hpp | 8 ++++++++ include/YAGE/Physics/rigidbody.hpp | 8 ++++++++ include/YAGE/camera2d.hpp | 8 ++++++++ include/YAGE/glslprogram.hpp | 8 ++++++++ include/YAGE/imageloader.hpp | 8 ++++++++ include/YAGE/inputmanager.hpp | 8 ++++++++ include/YAGE/iomanager.hpp | 8 ++++++++ include/YAGE/picopng.hpp | 8 ++++++++ include/YAGE/resourcemanager.hpp | 8 ++++++++ include/YAGE/sprite.hpp | 8 ++++++++ include/YAGE/spritebatch.hpp | 8 ++++++++ include/YAGE/texture.hpp | 8 ++++++++ include/YAGE/texturecache.hpp | 8 ++++++++ include/YAGE/vertex.hpp | 8 ++++++++ include/YAGE/window.hpp | 8 ++++++++ include/YAGE/yage.hpp | 8 ++++++++ 23 files changed, 184 insertions(+) (limited to 'include') 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 -- 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 -- 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 -- 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 -- 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 -- 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 -- 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 -- 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 -- 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 -- 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 -- 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 -- 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 -- 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 -- 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 -- 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 -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #include #include 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 -- 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 -- 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 -- 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 -- 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 -- 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 -- 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 -- 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 -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #ifndef YAGE_HPP #define YAGE_HPP -- cgit