cave-story-randomizer/src/conf.lua

49 lines
1.1 KiB
Lua

if io then
io.stdout:setvbuf("no")
end
function love.conf(t)
t.window = {
title = "Cave Story Randomizer",
icon = 'assets/icon.png',
width = 640,
height = 480,
resizable = false,
}
t.version = '11.1'
t.console = false
t.identity = 'CaveStoryRandomizer'
t.accelerometerjoystick = false
t.gammacorrect = false
t.modules.audio = false
t.modules.data = false
t.modules.joystick = false
t.modules.physics = false
t.modules.sound = false
t.modules.system = false
t.modules.thread = false
t.modules.timer = false
t.modules.touch = false
t.modules.video = false
t.releases = {
-- This is the name of the zip archive which contains your game.
title = 'Cave Story Randomizer',
-- This is the name of your game's executable.
package = 'Cave Story Randomizer',
loveVersion = '11.2',
version = nil,
author = 'shru',
email = nil,
description = nil,
homepage = 'https://shru.itch.io/cave-story-randomizer',
-- MacOS needs this.
identifier = 'CaveStoryRandomizer',
excludeFileList = {
},
compile = false,
releaseDirectory = 'releases',
}
end