Updated schema with custom type names to better match their C++ counterparts

This commit is contained in:
sippeangelo
2015-11-26 16:09:11 +01:00
parent ac05975fd5
commit 8419d2e7b9
4 changed files with 15 additions and 5 deletions
+3 -3
View File
@@ -9,9 +9,9 @@
</xs:annotation>
<xs:complexType>
<xs:all>
<xs:element name="Integer" type="xs:integer" minOccurs="0"/>
<xs:element name="Float" type="xs:decimal" minOccurs="0"/>
<xs:element name="String" type="xs:string" minOccurs="0"/>
<xs:element name="Integer" type="t:int" minOccurs="0"/>
<xs:element name="Double" type="t:double" minOccurs="0"/>
<xs:element name="String" type="t:string" minOccurs="0"/>
<xs:element name="Vector" type="t:Vector" minOccurs="0"/>
<xs:element name="Quaternion" type="t:Quaternion" minOccurs="0"/>
</xs:all>