diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2021-03-02 13:52:20 +0100 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2021-03-05 09:45:58 +0100 |
commit | bdc18437e7f858ead05c5f43c8b2b2beb70b3fbc (patch) | |
tree | af401f28f854759152c4e91aef57637b19fdb895 | |
parent | 4f66e718cc72eeb8c600a0809c260d8f9ed43ea0 (diff) | |
download | minetest-bdc18437e7f858ead05c5f43c8b2b2beb70b3fbc.tar.xz |
Properly format licenses at the beginning of files
-rw-r--r-- | src/splinesequence.cpp | 5 | ||||
-rw-r--r-- | src/splinesequence.h | 7 | ||||
-rw-r--r-- | src/wieldanimation.cpp | 5 | ||||
-rw-r--r-- | src/wieldanimation.h | 5 |
4 files changed, 17 insertions, 5 deletions
diff --git a/src/splinesequence.cpp b/src/splinesequence.cpp index e61c7e893..7179d6f72 100644 --- a/src/splinesequence.cpp +++ b/src/splinesequence.cpp @@ -1,14 +1,17 @@ /* -Minetest SplineSequence +Minetest Copyright (C) 2016-2018 Ben Deutsch <ben@bendeutsch.de> + This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. diff --git a/src/splinesequence.h b/src/splinesequence.h index 2ba40ca8f..a9e30dad2 100644 --- a/src/splinesequence.h +++ b/src/splinesequence.h @@ -1,14 +1,17 @@ /* -Minetest SplineSequence +Minetest Copyright (C) 2016-2018 Ben Deutsch <ben@bendeutsch.de> + This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. @@ -207,4 +210,4 @@ T SplineSequence<T>::_interpolate(T &bottom, T &top, float alpha) const // quaternions have a special interpolation template <> core::quaternion SplineSequence<core::quaternion>::_interpolate( - core::quaternion &bottom, core::quaternion &top, float alpha) const;
\ No newline at end of file + core::quaternion &bottom, core::quaternion &top, float alpha) const; diff --git a/src/wieldanimation.cpp b/src/wieldanimation.cpp index 10e744623..9016098e4 100644 --- a/src/wieldanimation.cpp +++ b/src/wieldanimation.cpp @@ -1,14 +1,17 @@ /* -Minetest WieldAnimation +Minetest Copyright (C) 2018 Ben Deutsch <ben@bendeutsch.de> + This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. diff --git a/src/wieldanimation.h b/src/wieldanimation.h index 86ea48e42..6981c217f 100644 --- a/src/wieldanimation.h +++ b/src/wieldanimation.h @@ -1,14 +1,17 @@ /* -Minetest WieldAnimation +Minetest Copyright (C) 2018 Ben Deutsch <ben@bendeutsch.de> + This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |