1
0
forked from 0ad/0ad

Added new object.dtd provided by Philip, that includes attributes for props and so makes propped objects notably functional.

This was SVN commit r892.
This commit is contained in:
Acumen 2004-08-03 20:51:20 +00:00
parent 9a2acadc2e
commit 0db3e13b81

View File

@ -1,12 +1,20 @@
<!ELEMENT Object
(Name,ModelName,TextureName,Animations?)>
(Name,ModelName,TextureName,Animations?,Props?)>
<!ELEMENT Name (#PCDATA)>
<!ELEMENT ModelName (#PCDATA)>
<!ELEMENT TextureName (#PCDATA)>
<!ELEMENT Animations (Animation)*>
<!ELEMENT Animation (#PCDATA)*>
<!ATTLIST Animation name CDATA #REQUIRED
file CDATA #REQUIRED
speed CDATA "100">
<!ELEMENT Animation (#PCDATA)>
<!ATTLIST Animation
name CDATA #REQUIRED
file CDATA #REQUIRED
speed CDATA "100">
<!ELEMENT Props (Prop)*>
<!ELEMENT Prop (#PCDATA)>
<!ATTLIST Prop
attachpoint CDATA #REQUIRED
model CDATA #REQUIRED>