File: config.xml

package info (click to toggle)
scummvm 2.9.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 450,268 kB
  • sloc: cpp: 4,297,604; asm: 28,322; python: 12,901; sh: 11,219; java: 8,477; xml: 7,843; perl: 2,633; ansic: 2,465; yacc: 1,670; javascript: 1,020; makefile: 933; lex: 578; awk: 275; objc: 82; sed: 11; php: 1
file content (44 lines) | stat: -rw-r--r-- 1,810 bytes parent folder | download | duplicates (3)
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
33
34
35
36
37
38
39
40
41
42
43
44
<?xml version="1.0"?>
<!DOCTYPE config SYSTEM "dtd/config.dtd" [
  <!ENTITY % common SYSTEM "dtd/common.dtd">
  %common;
  <!ENTITY % constraint SYSTEM "dtd/constraint.dtd">
  %constraint;
  <!ENTITY % color SYSTEM "dtd/color.dtd">
  %color;
  <!ENTITY % armors SYSTEM "dtd/armors.dtd">
  %armors;
  <!ENTITY % creatures SYSTEM "dtd/creatures.dtd">
  %creatures;
  <!ENTITY % tileRules SYSTEM "dtd/tileRules.dtd">
  %tileRules;
  <!ENTITY % tilesets SYSTEM "dtd/tilesets.dtd">
  %tilesets;
  <!ENTITY % tileset SYSTEM "dtd/tileset.dtd">
  %tileset;
  <!ENTITY % tilemap SYSTEM "dtd/tilemap.dtd">
  %tilemap;
  <!ENTITY % egaPalette SYSTEM "dtd/egaPalette.dtd">
  %egaPalette;
  <!ENTITY % graphics SYSTEM "dtd/graphics.dtd">
  %graphics;
  <!ENTITY % maps SYSTEM "dtd/maps.dtd">
  %maps;
  <!ENTITY % weapons SYSTEM "dtd/weapons.dtd">
  %weapons;
]>

<!-- $Id: config.xml 2545 2005-09-20 05:11:21Z andrewtaylor $ -->
<!-- this is the top level config that includes all the sub-config files -->
<config name="Ultima 4">
  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="armors.xml"/>
  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="creatures.xml"/>
  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="maps.xml"/>
  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="tileRules.xml"/>
  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="tilesets.xml"/>
  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="egaPalette.xml"/>
  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="graphics.xml"/>
  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="music.xml"/>
  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="sound.xml"/>
  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="weapons.xml"/>
</config>