aboutsummaryrefslogtreecommitdiffstats
path: root/yage/physics
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-12-20 14:38:14 +0000
committerYann Herklotz <ymherklotz@gmail.com>2017-12-20 14:38:14 +0000
commitc60164953dd6a4ee485c42211a3bcf8ee9eba06f (patch)
treea66408a1ad9423512c4fe53cf89dbacf502592dd /yage/physics
parent16905976c82c57fdc98a8988392354597f166a12 (diff)
downloadYAGE-c60164953dd6a4ee485c42211a3bcf8ee9eba06f.tar.gz
YAGE-c60164953dd6a4ee485c42211a3bcf8ee9eba06f.zip
Fixed license headers
Diffstat (limited to 'yage/physics')
-rw-r--r--yage/physics/body.cpp4
-rw-r--r--yage/physics/body.h4
-rw-r--r--yage/physics/collider.h4
-rw-r--r--yage/physics/collisionbody.h4
-rw-r--r--yage/physics/particlebody.cpp4
-rw-r--r--yage/physics/particlebody.h4
-rw-r--r--yage/physics/physics.h4
-rw-r--r--yage/physics/rectanglecollider.cpp4
-rw-r--r--yage/physics/rectanglecollider.h4
-rw-r--r--yage/physics/rigidbody.cpp4
-rw-r--r--yage/physics/rigidbody.h4
11 files changed, 22 insertions, 22 deletions
diff --git a/yage/physics/body.cpp b/yage/physics/body.cpp
index b5283d76..d04eecfd 100644
--- a/yage/physics/body.cpp
+++ b/yage/physics/body.cpp
@@ -1,5 +1,5 @@
-/* ----------------------------------------------------------------------------
- * body.cpp
+/** ---------------------------------------------------------------------------
+ * @file: body.cpp
*
* Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
* MIT License, see LICENSE file for more details.
diff --git a/yage/physics/body.h b/yage/physics/body.h
index 312ceb58..0a6bbe42 100644
--- a/yage/physics/body.h
+++ b/yage/physics/body.h
@@ -1,5 +1,5 @@
-/* ----------------------------------------------------------------------------
- * body.h
+/** ---------------------------------------------------------------------------
+ * @file: body.h
*
* Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
* MIT License, see LICENSE file for more details.
diff --git a/yage/physics/collider.h b/yage/physics/collider.h
index fe070fa6..220c785d 100644
--- a/yage/physics/collider.h
+++ b/yage/physics/collider.h
@@ -1,5 +1,5 @@
-/* ----------------------------------------------------------------------------
- * collider.h
+/** ---------------------------------------------------------------------------
+ * @file: collider.h
*
* Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
* MIT License, see LICENSE file for more details.
diff --git a/yage/physics/collisionbody.h b/yage/physics/collisionbody.h
index 62f12ade..c779feae 100644
--- a/yage/physics/collisionbody.h
+++ b/yage/physics/collisionbody.h
@@ -1,5 +1,5 @@
-/* ----------------------------------------------------------------------------
- * collisionbody.h
+/** ---------------------------------------------------------------------------
+ * @file: collisionbody.h
*
* Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
* MIT License, see LICENSE file for more details.
diff --git a/yage/physics/particlebody.cpp b/yage/physics/particlebody.cpp
index 91078d45..dc950ae6 100644
--- a/yage/physics/particlebody.cpp
+++ b/yage/physics/particlebody.cpp
@@ -1,5 +1,5 @@
-/* ----------------------------------------------------------------------------
- * particlebody.cpp
+/** ---------------------------------------------------------------------------
+ * @file: particlebody.cpp
*
* Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
* MIT License, see LICENSE file for more details.
diff --git a/yage/physics/particlebody.h b/yage/physics/particlebody.h
index 336c0bd0..2e7a4f88 100644
--- a/yage/physics/particlebody.h
+++ b/yage/physics/particlebody.h
@@ -1,5 +1,5 @@
-/* ----------------------------------------------------------------------------
- * particlebody.h
+/** ---------------------------------------------------------------------------
+ * @file: particlebody.h
*
* Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
* MIT License, see LICENSE file for more details.
diff --git a/yage/physics/physics.h b/yage/physics/physics.h
index fb42b257..64dcd95f 100644
--- a/yage/physics/physics.h
+++ b/yage/physics/physics.h
@@ -1,5 +1,5 @@
-/* ----------------------------------------------------------------------------
- * physics.h
+/** ---------------------------------------------------------------------------
+ * @file: physics.h
*
* Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
* MIT License, see LICENSE file for more details.
diff --git a/yage/physics/rectanglecollider.cpp b/yage/physics/rectanglecollider.cpp
index ea70611f..e1b3adff 100644
--- a/yage/physics/rectanglecollider.cpp
+++ b/yage/physics/rectanglecollider.cpp
@@ -1,5 +1,5 @@
-/* ----------------------------------------------------------------------------
- * rectanglecollider.cpp
+/** ---------------------------------------------------------------------------
+ * @file: rectanglecollider.cpp
*
* Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
* MIT License, see LICENSE file for more details.
diff --git a/yage/physics/rectanglecollider.h b/yage/physics/rectanglecollider.h
index 62d1033c..ba3bdead 100644
--- a/yage/physics/rectanglecollider.h
+++ b/yage/physics/rectanglecollider.h
@@ -1,5 +1,5 @@
-/* ----------------------------------------------------------------------------
- * rectanglecollider.h
+/** ---------------------------------------------------------------------------
+ * @file: rectanglecollider.h
*
* Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
* MIT License, see LICENSE file for more details.
diff --git a/yage/physics/rigidbody.cpp b/yage/physics/rigidbody.cpp
index ea58efeb..1a7ae2ec 100644
--- a/yage/physics/rigidbody.cpp
+++ b/yage/physics/rigidbody.cpp
@@ -1,5 +1,5 @@
-/* ----------------------------------------------------------------------------
- * rigidbody.cpp
+/** ---------------------------------------------------------------------------
+ * @file: rigidbody.cpp
*
* Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
* MIT License, see LICENSE file for more details.
diff --git a/yage/physics/rigidbody.h b/yage/physics/rigidbody.h
index cbf01109..dae9f8e5 100644
--- a/yage/physics/rigidbody.h
+++ b/yage/physics/rigidbody.h
@@ -1,5 +1,5 @@
-/* ----------------------------------------------------------------------------
- * rigidbody.h
+/** ---------------------------------------------------------------------------
+ * @file: rigidbody.h
*
* Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
* MIT License, see LICENSE file for more details.