Skip to content

Instantly share code, notes, and snippets.

/test.xml Secret

Created December 10, 2013 11:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/30b56facb78fe6ecd482 to your computer and use it in GitHub Desktop.
Save anonymous/30b56facb78fe6ecd482 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<adventure title="Test Adventure" author="Tester">
<enemies>
<enemy id="e1" difficulty="1">Enemy1</enemy>
</enemies>
<story>
<narration id="n1" action="d1">It's adventure time!</narration>
<decision id="d1">
<description>Would you like to participate?</description>
<choice action="n2">Yes, please.</choice>
<choice action="n3">Not the slightest.</choice>
</decision>
<narration id="n2" action="end">Great choice!</narration>
<narration id="n3" action="end">Okay...</narration>
</story>
</adventure>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment