-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssetTypePlayerTechUpgradeBinding.xsd
More file actions
23 lines (19 loc) · 1.09 KB
/
AssetTypePlayerTechUpgradeBinding.xsd
File metadata and controls
23 lines (19 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<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">
<xs:include schemaLocation="Base/AssetBase.xsd"/>
<xs:include schemaLocation="Includes/Base.xsd"/>
<xs:include schemaLocation="Includes/Ref.xsd"/>
<xs:complexType name="PlayerTechUpgradeBindingInfo">
<xs:attribute name="TechDependency" type="PlayerTechRef" use="required" />
<xs:attribute name="UpgradeToGrant" type="UpgradeTemplateRef" use="required" />
</xs:complexType>
<xs:complexType name="PlayerTechUpgradeBinding" xas:runtimeWrapper="::PlayerTechUpgradeBinding" xas:typeGroup="Xml">
<xs:complexContent>
<xs:extension base="BaseInheritableAsset">
<xs:sequence>
<xs:element name="Binding" type="PlayerTechUpgradeBindingInfo" minOccurs="1" maxOccurs="unbounded" />
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:schema>