This commit is contained in:
EngineerSmith
2022-01-19 21:22:21 +00:00
commit 18805353c2
11 changed files with 3803 additions and 0 deletions

26
test/conf.lua Normal file
View File

@@ -0,0 +1,26 @@
function love.conf(t)
t.identity = nil
t.appendidentity = false
t.version = "11.3"
t.console = true
t.accelerometerjoystick = false
t.externalstorage = false
t.modules.audio = false
t.modules.data = true
t.modules.event = true
t.modules.font = false
t.modules.graphics = false
t.modules.image = false
t.modules.joystick = false
t.modules.keyboard = false
t.modules.math = true
t.modules.mouse = false
t.modules.physics = false
t.modules.sound = false
t.modules.system = true
t.modules.thread = false
t.modules.timer = true
t.modules.touch = false
t.modules.video = false
t.modules.window = false
end