1-- GunFu Deadlands
2-- Copyright 2009-2011 Christiaan Janssen, September 2009-October 2011
3--
4-- This file is part of GunFu Deadlands.
5--
6--     GunFu Deadlands is free software: you can redistribute it and/or modify
7--     it under the terms of the GNU General Public License as published by
8--     the Free Software Foundation, either version 3 of the License, or
9--     (at your option) any later version.
10--
11--     GunFu Deadlands is distributed in the hope that it will be useful,
12--     but WITHOUT ANY WARRANTY; without even the implied warranty of
13--     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14--     GNU General Public License for more details.
15--
16--     You should have received a copy of the GNU General Public License
17--     along with GunFu Deadlands.  If not, see <http://www.gnu.org/licenses/>.
18
19function love.conf(t)
20    t.title = "GunFu Deadlands - V1.01"    -- The title of the window the game is in (string)
21    t.author = "Christiaa Janssen"        -- The author of the game (string)
22    t.version = 071               -- The L�VE version this game was made for (number)
23    t.console = false           -- Attach a console (boolean, Windows only)
24    t.release = true           -- Enable release mode (boolean)
25    t.screen.width = 640        -- The window width (number)
26    t.screen.height = 480       -- The window height (number)
27    t.screen.fullscreen = false -- Enable fullscreen (boolean)
28    t.screen.vsync = true       -- Enable vertical sync (boolean)
29    t.screen.fsaa = 0           -- The number of FSAA-buffers (number)
30    t.modules.joystick = false  -- Enable the joystick module (boolean)
31    t.modules.audio = true      -- Enable the audio module (boolean)
32    t.modules.keyboard = true   -- Enable the keyboard module (boolean)
33    t.modules.event = true      -- Enable the event module (boolean)
34    t.modules.image = true      -- Enable the image module (boolean)
35    t.modules.graphics = true   -- Enable the graphics module (boolean)
36    t.modules.timer = true      -- Enable the timer module (boolean)
37    t.modules.mouse = true      -- Enable the mouse module (boolean)
38    t.modules.sound = true      -- Enable the sound module (boolean)
39    t.modules.physics = false    -- Enable the physics module (boolean)
40end