forked from KDE/kmines
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkmines.kcfg
32 lines (32 loc) · 1.1 KB
/
kmines.kcfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?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="kminesrc"/>
<group name="General">
<entry name="UseQuestionMarks" type="Bool" key="question mark">
<label>Whether the "unsure" marker may be used.</label>
<default>true</default>
</entry>
</group>
<group name="Options">
<entry name="CustomWidth" type="Int" key="custom width">
<label>The width of the playing field.</label>
<min>5</min>
<max>50</max>
<default>10</default>
</entry>
<entry name="CustomHeight" type="Int" key="custom height">
<label>The height of the playing field.</label>
<min>5</min>
<max>50</max>
<default>10</default>
</entry>
<entry name="CustomMines" type="Int" key="custom mines">
<label>The number of mines in the playing field.</label>
<min>1</min>
<default>20</default>
</entry>
</group>
</kcfg>