blob: f25f3dcfd80faddfbcd0187e5ea5ce5fc5c0562c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
function love.conf (t)
t.title = "Roflnauts 2"
t.version = "0.10.2"
t.window.width = 320
t.window.height = 180
t.identity = "not-nautz"
t.console = false
t.releases = {
title = t.title,
identifier = t.identity,
package = "roflnauts",
author = "The Roflnauts 2 Team",
email = "nthirtyone@gmail.com",
description = "Fan made sequel to Roflnauts.",
homepage = "https://github.com/nthirtyone/roflnauts"
}
end
|