Advertisement
Guest User

Untitled

a guest
Aug 12th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. <project name="YPP Config" basedir=".">
  2. <description>
  3. Configure ScenePainter to use Yohoho! Puzzle Pirates as a media source.
  4. </description>
  5.  
  6. <!-- Path to the resourcelist (always uses forward slashes) -->
  7. <property name="nenya.configpath" value="config/resource/manager.properties"/>
  8.  
  9. <!-- Path prefix to append when loading resources via the classpath -->
  10. <property name="nenya.resourcedir.prefix" value="rsrc" />
  11.  
  12. <!-- Name of the "tiles" set in the manager.properties files -->
  13. <property name="nenya.set.name.tiles" value="tilesets" />
  14.  
  15. <!-- Name of the "components" set in the manager.properties files -->
  16. <property name="nenya.set.name.components" value="components" />
  17.  
  18. <!-- Filesystem location of the unpacked resource bundles -->
  19. <path id="nenya.resourcedir">
  20. <dirset dir="${basedir}">
  21. <include name="${nenya.resourcedir.prefix}" />
  22. </dirset>
  23. </path>
  24.  
  25. <!-- Filesystem location of the plain image directory -->
  26. <path id="nenya.imageroot">
  27. <dirset dir="${user.home}/ScenePainter">
  28. <include name="images" />
  29. </dirset>
  30. </path>
  31.  
  32. <!-- Additional classpath, containing resources -->
  33. <path id="nenya.classpath">
  34. <fileset dir="code">
  35. <include name="config.jar"/>
  36. </fileset>
  37. </path>
  38. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement