From 90c4c949160693100695a852c3752c915fa0ea55 Mon Sep 17 00:00:00 2001 From: Kazhnuz Date: Sun, 27 Jan 2019 20:21:06 +0100 Subject: [PATCH] add basic main.lua file --- sonic-radiance.love/main.lua | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 sonic-radiance.love/main.lua diff --git a/sonic-radiance.love/main.lua b/sonic-radiance.love/main.lua new file mode 100644 index 0000000..5f1cbb1 --- /dev/null +++ b/sonic-radiance.love/main.lua @@ -0,0 +1,18 @@ +-- main.lua :: the core file of the game, will load main libs and core system +-- +-- Copyright (C) 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 +-- 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 + +function love.load() + +end