mirror of
https://github.com/correl/mage.git
synced 2024-11-26 11:09:52 +00:00
49 lines
1.3 KiB
XML
49 lines
1.3 KiB
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
||
|
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||
|
|
||
|
<xs:element name="config">
|
||
|
<xs:complexType>
|
||
|
<xs:sequence>
|
||
|
<xs:element ref="server"/>
|
||
|
<xs:element ref="playerTypes"/>
|
||
|
<xs:element ref="gameTypes"/>
|
||
|
</xs:sequence>
|
||
|
</xs:complexType>
|
||
|
</xs:element>
|
||
|
|
||
|
<xs:element name="server">
|
||
|
<xs:complexType>
|
||
|
<xs:attribute name="serverName" type="xs:string" use="required"/>
|
||
|
<xs:attribute name="port" type="xs:positiveInteger" use="required"/>
|
||
|
<xs:attribute name="maxGameThreads" type="xs:positiveInteger" use="required"/>
|
||
|
<xs:attribute name="maxSecondsIdle" type="xs:positiveInteger" use="required"/>
|
||
|
</xs:complexType>
|
||
|
</xs:element>
|
||
|
|
||
|
<xs:element name="plugin">
|
||
|
<xs:complexType>
|
||
|
<xs:attribute name="name" type="xs:string"/>
|
||
|
<xs:attribute name="jar" type="xs:string"/>
|
||
|
<xs:attribute name="className" type="xs:string"/>
|
||
|
</xs:complexType>
|
||
|
</xs:element>
|
||
|
|
||
|
<xs:element name="playerTypes">
|
||
|
<xs:complexType>
|
||
|
<xs:sequence>
|
||
|
<xs:element ref="plugin" maxOccurs="unbounded"/>
|
||
|
</xs:sequence>
|
||
|
</xs:complexType>
|
||
|
</xs:element>
|
||
|
|
||
|
<xs:element name="gameTypes">
|
||
|
<xs:complexType>
|
||
|
<xs:sequence>
|
||
|
<xs:element ref="plugin" maxOccurs="unbounded"/>
|
||
|
</xs:sequence>
|
||
|
</xs:complexType>
|
||
|
</xs:element>
|
||
|
|
||
|
</xs:schema>
|