21 lines
748 B
XML
21 lines
748 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="SecondaryItem">
|
|
<xs:annotation>
|
|
<xs:documentation>The Players Secondary Item/Weapon</xs:documentation>
|
|
</xs:annotation>
|
|
<xs:complexType>
|
|
<xs:all>
|
|
<xs:element name="Ammo" type="t:double" minOccurs="0">
|
|
<xs:annotation><xs:documentation>Ammo count</xs:documentation></xs:annotation>
|
|
</xs:element>
|
|
<xs:element name="CoolDownTimer" type="t:double" minOccurs="0">
|
|
<xs:annotation><xs:documentation>Cooldown till next item/weapon use</xs:documentation></xs:annotation>
|
|
</xs:element>
|
|
</xs:all>
|
|
</xs:complexType>
|
|
</xs:element>
|
|
</xs:schema> |