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
+9
View File
@@ -3,4 +3,13 @@
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="types" elementFormDefault="qualified">
<xs:include schemaLocation="Types/Quaternion.xsd"/>
<xs:include schemaLocation="Types/Vector.xsd"/>
<xs:simpleType name="int">
<xs:restriction base="xs:integer"></xs:restriction>
</xs:simpleType>
<xs:simpleType name="double">
<xs:restriction base="xs:decimal"></xs:restriction>
</xs:simpleType>
<xs:simpleType name="string">
<xs:restriction base="xs:string"></xs:restriction>
</xs:simpleType>
</xs:schema>