7a8604bf2b
Added variable in the CapturePoint component: CapturePointNumber. This is needed since we cant know what capturepoint is next to be taken over otherwise. Updated the CapturePointTest according to current CapturePointSystem TODO: try to refactor code in CapturePointSystem
19 lines
659 B
XML
19 lines
659 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="CapturePoint">
|
|
<xs:annotation>
|
|
<xs:documentation>A Capture Point</xs:documentation>
|
|
</xs:annotation>
|
|
<xs:complexType>
|
|
<xs:all>
|
|
<xs:element name="CaptureTimer" type="t:double" minOccurs="0"/>
|
|
<xs:element name="OwnedBy" type="t:int" minOccurs="0"/>
|
|
<xs:element name="IsHomeCapturePointForTeamNumber" type="t:int" minOccurs="0"/>
|
|
<xs:element name="CapturePointNumber" type="t:int" minOccurs="0"/>
|
|
</xs:all>
|
|
</xs:complexType>
|
|
</xs:element>
|
|
</xs:schema> |