Mercurial > repos > snowblizz-super-API-ideas
view dtds/warfoundry-cats.xsd @ 27:e7de5c96f5c2
Re #44 - Fix API tests
* Make AbstractNative factory silently dispose of IOExceptions - test data triggers one on the SharpZipLib DLL
* Remove unused MakeZipFile method
* Rename GetGameSystemLoadingFactoryForFile to remove reference to Race
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sat, 14 Mar 2009 17:10:26 +0000 |
parents | 72312a7ac08a |
children | 6b9d37f14a14 |
line wrap: on
line source
<?xml version="1.0"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:core="http://ibboard.co.uk/warfoundry/core" targetNamespace="http://ibboard.co.uk/warfoundry/cats" xmlns="http://ibboard.co.uk/warfoundry/cats" elementFormDefault="qualified"> <xs:complexType name="categoriestype"> <xs:sequence> <xs:element name="cat" type="cattype" minOccurs="1" maxOccurs="unbounded"/> </xs:sequence> </xs:complexType> <xs:complexType name="cattype"> <xs:attribute name="id" type="xs:ID" /> <xs:attribute name="name" type="xs:string" use="required"/> <xs:attribute name="minPoints" type="core:nonNegativeDecimal" default="0"/> <xs:attribute name="maxPoints" type="core:infiniteOrNonNegativeDecimal" default="-1"/> <xs:attribute name="minPercentage" type="core:percentage" default="0"/> <xs:attribute name="maxPercentage" type="core:percentage" default="100"/> </xs:complexType> </xs:schema>