diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-10 00:01:07 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-10 00:01:07 +0200 |
commit | 2fb206efb3dc62508306ca293e808648efbba9f7 (patch) | |
tree | 4cd9cc4fff7bc3a71a3b7d1fa1603f36892da8ac /input | |
parent | a6cba2758e1b8cbc189d623c1bfdbc146a8ba87e (diff) |
fix double tiles
Diffstat (limited to 'input')
-rw-r--r-- | input/test.xml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/input/test.xml b/input/test.xml new file mode 100644 index 0000000..42ed1d2 --- /dev/null +++ b/input/test.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" ?> +<canvas rows="3" cols="3"> + <nodeTypes> + <nodeType tag="Y"/> + <nodeType tag="B"/> + <nodeType tag="R"/> + <nodeType tag="G"/> + </nodeTypes> + <nodes> + <Y x="0" y="0"/> + <B x="1" y="0"/> + <G x="2" y="0"/> + </nodes> +</canvas> |