add basic main.lua file
This commit is contained in:
parent
8d3a02ee8e
commit
90c4c94916
1 changed files with 18 additions and 0 deletions
18
sonic-radiance.love/main.lua
Normal file
18
sonic-radiance.love/main.lua
Normal file
|
@ -0,0 +1,18 @@
|
|||
-- main.lua :: the core file of the game, will load main libs and core system
|
||||
--
|
||||
-- Copyright (C) 2019 Kazhnuz <kazhnuz@kazhnuz.space>
|
||||
--
|
||||
-- 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
|
||||
-- destroy the world using my code plz)
|
||||
--
|
||||
-- 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.
|
||||
--
|
||||
-- You should have received a copy of the WTF Public License
|
||||
-- along with this program. If not, see <http://www.wtfpl.net/>
|
||||
|
||||
function love.load()
|
||||
|
||||
end
|
Loading…
Reference in a new issue