UIComponentShellMultiplayer.xsd 1.6 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <xs:schema
  3. xmlns:xs="http://www.w3.org/2001/XMLSchema"
  4. xmlns="uri:ea.com:eala:asset"
  5. xmlns:at="uri:ea.com:eala:asset:type"
  6. xmlns:xas="uri:ea.com:eala:asset:schema"
  7. targetNamespace="uri:ea.com:eala:asset"
  8. elementFormDefault="qualified"
  9. xmlns:XmlEdit="http://tempuri.org/XmlEdit.xsd">
  10. <xs:include schemaLocation="../Includes/UIBaseComponent.xsd"/>
  11. <xs:include schemaLocation="MultiplayerCommonUIData.xsd"/>
  12. <xs:complexType name="RankedOptionSetting">
  13. <xs:attribute name="Label" type="xs:string" />
  14. <xs:attribute name="Value" type="SageInt"/>
  15. </xs:complexType>
  16. <xs:complexType name="UIComponentShellMultiplayer">
  17. <xs:complexContent>
  18. <xs:extension base="UIBaseComponent">
  19. <xs:sequence>
  20. <!-- Label spec's are used to set the contents of Apt strings. Better to put it here than hard code it. -->
  21. <xs:element name="MatchOptionsRankedLabelSpec" type="xs:string" minOccurs="1" maxOccurs="1"/>
  22. <xs:element name="MatchOptionsMatchTypeLabelSpec" type="xs:string" minOccurs="1" maxOccurs="1"/>
  23. <xs:element name="MatchOptionsPlayersLabelSpec" type="xs:string" minOccurs="1" maxOccurs="1"/>
  24. <xs:element name="AnyOptionLabelSpec" type="xs:string" minOccurs="1" maxOccurs="1"/>
  25. <xs:element name="TACLineLabelSpec" type="xs:string" minOccurs="1" maxOccurs="1"/>
  26. <xs:element name="GameType" type="GameplayTypeSetting" minOccurs="0" maxOccurs="unbounded"/>
  27. <xs:element name="RankedOption" type="RankedOptionSetting" minOccurs="0" maxOccurs="unbounded"/>
  28. </xs:sequence>
  29. </xs:extension>
  30. </xs:complexContent>
  31. </xs:complexType>
  32. </xs:schema>