This repository has been archived on 2024-05-19. You can view files and clone it, but cannot push or open issues or pull requests.
l-systems/tortue.xsd

23 lines
753 B
XML
Raw Normal View History

2024-04-26 22:19:39 +02:00
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
2024-05-03 01:59:58 +02:00
<xs:complexType name="Empty">
</xs:complexType>
2024-04-27 00:08:16 +02:00
2024-05-03 01:59:58 +02:00
<xs:element name="tortue">
<xs:complexType>
<xs:choice maxOccurs="unbounded">
<xs:element name="line" type="xs:positiveInteger" />
<xs:element name="move" type="xs:positiveInteger" />
<xs:element name="turn" type="xs:integer" />
2024-04-27 00:08:16 +02:00
2024-05-03 01:59:58 +02:00
<!-- TODO: Store que si on a déja eu un line/move -->
<xs:element name="store" type="Empty" />
2024-04-27 00:08:16 +02:00
2024-05-03 01:59:58 +02:00
<!-- TODO: Restore que si on a déjà eu un store -->
<xs:element name="restore" type="Empty" />
</xs:choice>
</xs:complexType>
</xs:element>
2024-04-26 22:19:39 +02:00
</xs:schema>