diff options
author | Ian C <ianc@noddybox.co.uk> | 2011-01-05 13:26:58 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2011-01-05 13:26:58 +0000 |
commit | 221f8b42adeb776e10944a5ed3835b8f00434985 (patch) | |
tree | 6a98f756934565549d505fb65c9d31f0bc5b89f3 /config | |
parent | 695a0d97c22e37fff8f742c03423eb93981e0f99 (diff) |
Added some structure to allow pluggable display drivers.
Diffstat (limited to 'config')
-rw-r--r-- | config/config | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/config/config b/config/config index 1f6b18a..08a7a4a 100644 --- a/config/config +++ b/config/config @@ -1,2 +1,32 @@ # Example configuration file # +# +# General format is: +# +# [section] +# variable = value +# +# Any blank lines or lines starting with a comment are ignored. +# + + +# This defines any textures to load, and the names applied to them. Any image +# format supported by SDL Image should be loadable. +# +[textures] +example1 = files/file.png +example2 = files/file.png + + +# This enables or disables various graphical effects. The defaults for the +# effects are given here. +# +[gfx] +trails = yes + + +# This defines the bodies that will be placed in the simulation. +# +[universe] +body = sun +body = planet |