switch to MIT licence
This commit is contained in:
parent
479ffe94ea
commit
dba0bbcbae
4 changed files with 43 additions and 27 deletions
13
LICENCE
13
LICENCE
|
@ -1,13 +0,0 @@
|
||||||
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
|
||||||
Version 2, December 2004
|
|
||||||
|
|
||||||
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
|
|
||||||
|
|
||||||
Everyone is permitted to copy and distribute verbatim or modified
|
|
||||||
copies of this license document, and changing it is allowed as long
|
|
||||||
as the name is changed.
|
|
||||||
|
|
||||||
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
|
||||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
|
||||||
|
|
||||||
0. You just DO WHAT THE FUCK YOU WANT TO.
|
|
21
LICENSE
Normal file
21
LICENSE
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2018 Kazhnuz
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
|
@ -14,4 +14,4 @@ Seront-ils seuls dans cet aventure ? Quel est le plan d’Eggman ? Quels secre
|
||||||
|
|
||||||
## Licence
|
## Licence
|
||||||
|
|
||||||
Le code du jeu est sous licence WTF, vous pouvez en faire ce que vous voulez. Les assets originaux sont © SEGA, et les assets et histoire sont propriété de leurs créateurs respectifs
|
Le code du jeu est sous licence MIT. Les assets originaux sont © SEGA, et les assets et histoire sont propriété de leurs créateurs respectifs.
|
||||||
|
|
|
@ -1,17 +1,25 @@
|
||||||
-- main.lua :: the core file of the game, will load main libs and core system
|
-- main.lua :: the core file of the game, will load main libs and core system
|
||||||
--
|
|
||||||
-- Copyright (C) 2019 Kazhnuz <kazhnuz@kazhnuz.space>
|
--[[
|
||||||
--
|
Copyright © 2019 Kazhnuz
|
||||||
-- This file is published under the WTF Public Licence 2.0. Basically, everybody
|
|
||||||
-- can use, publish, modify this code and do what they want with them. (Don't
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||||
-- destroy the world using my code plz)
|
this software and associated documentation files (the "Software"), to deal in
|
||||||
--
|
the Software without restriction, including without limitation the rights to
|
||||||
-- This program is distributed in the hope that it will be useful,
|
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||||
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
the Software, and to permit persons to whom the Software is furnished to do so,
|
||||||
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
subject to the following conditions:
|
||||||
--
|
|
||||||
-- You should have received a copy of the WTF Public License
|
The above copyright notice and this permission notice shall be included in all
|
||||||
-- along with this program. If not, see <http://www.wtfpl.net/>
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||||
|
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||||
|
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||||
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||||
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
]]
|
||||||
|
|
||||||
utils = require "libs.loveutils"
|
utils = require "libs.loveutils"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue