AssetTypePlayerTechUpgradeBinding.xsd 1.1 KB

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="uri:ea.com:eala:asset" xmlns:at="uri:ea.com:eala:asset:type" xmlns:xas="uri:ea.com:eala:asset:schema" targetNamespace="uri:ea.com:eala:asset" elementFormDefault="qualified" xmlns:XmlEdit="http://tempuri.org/XmlEdit.xsd">
  3. <xs:include schemaLocation="Base/AssetBase.xsd"/>
  4. <xs:include schemaLocation="Includes/Base.xsd"/>
  5. <xs:include schemaLocation="Includes/Ref.xsd"/>
  6. <xs:complexType name="PlayerTechUpgradeBindingInfo">
  7. <xs:attribute name="TechDependency" type="PlayerTechRef" use="required" />
  8. <xs:attribute name="UpgradeToGrant" type="UpgradeTemplateRef" use="required" />
  9. </xs:complexType>
  10. <xs:complexType name="PlayerTechUpgradeBinding" xas:runtimeWrapper="::PlayerTechUpgradeBinding" xas:typeGroup="Xml">
  11. <xs:complexContent>
  12. <xs:extension base="BaseInheritableAsset">
  13. <xs:sequence>
  14. <xs:element name="Binding" type="PlayerTechUpgradeBindingInfo" minOccurs="1" maxOccurs="unbounded" />
  15. </xs:sequence>
  16. </xs:extension>
  17. </xs:complexContent>
  18. </xs:complexType>
  19. </xs:schema>