diff options
Diffstat (limited to 'ksnake/ksnake.kcfg')
-rw-r--r-- | ksnake/ksnake.kcfg | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/ksnake/ksnake.kcfg b/ksnake/ksnake.kcfg new file mode 100644 index 00000000..087be291 --- /dev/null +++ b/ksnake/ksnake.kcfg @@ -0,0 +1,50 @@ +<?xml version="1.0" encoding="UTF-8"?> +<kcfg xmlns="http://www.kde.org/standards/kcfg/1.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://www.kde.org/standards/kcfg/1.0 + http://www.kde.org/standards/kcfg/1.0/kcfg.xsd" > + <kcfgfile name="ksnakerc"/> + <group name="Game"> + <entry name="bgcolor_enabled" type="Bool"> + <default>false</default> + </entry> + <entry name="bgcolor" type="Color"> + <label>The background color of the game.</label> + <default>white</default> + </entry> + <entry name="bgimage_enabled" type="Bool"> + <default>true</default> + </entry> + <entry name="bgimage" type="Int"> + <label>Background Image</label> + <default>4</default> + </entry> + + <entry name="Skill" type="Int"> + <label>Snake speed</label> + <default>0</default> + </entry> + <entry name="ComputerSnakes" type="Int"> + <label>Number of Snakes in the game</label> + <default>1</default> + </entry> + <entry name="SnakesAI" type="Int"> + <label>Snake Behavior</label> + <default>0</default> + </entry> + + <entry name="Balls" type="Int"> + <label>Number of Balls in the game</label> + <default>1</default> + </entry> + <entry name="BallsAI" type="Int"> + <label>Ball Behavior</label> + <default>0</default> + </entry> + + <entry name="StartingRoom" type="Int"> + <default>1</default> + </entry> + + </group> +</kcfg> |