19 lines
648 B
XML
19 lines
648 B
XML
<?xml version="1.0"?>
|
|
|
|
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:t="types">
|
|
<xs:import schemaLocation="../Types.xsd" namespace="types"/>
|
|
|
|
<xs:element name="PlayerSpawn">
|
|
<xs:annotation>
|
|
<xs:documentation>Combined with a Spawner and a Team component, defines a spawn point for a player team.</xs:documentation>
|
|
</xs:annotation>
|
|
<xs:complexType>
|
|
<xs:all>
|
|
<xs:element name="AssaultFile" type="t:string" minOccurs="0"/>
|
|
<xs:element name="DefenderFile" type="t:string" minOccurs="0"/>
|
|
<xs:element name="SniperFile" type="t:string" minOccurs="0"/>
|
|
</xs:all>
|
|
</xs:complexType>
|
|
</xs:element>
|
|
</xs:schema>
|