BUG Config.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?xml version="1.0" encoding="ISO-8859-1" ?>
  2. <!--
  3. BUG XML Configuration
  4. This file defines the elements used in the XML configuration files.
  5. DO NOT MODIFY THIS FILE!
  6. Copyright (c) 2009 The BUG Mod.
  7. -->
  8. <bug>
  9. <config root="bug">
  10. <config tag="mod" parents="xml" module="BugConfig" class="ModHandler"/>
  11. <config tag="init" parents="mod" module="BugConfig" class="InitHandler"/>
  12. <config tag="export" parents="mod" module="BugConfig" class="ExportHandler"/>
  13. <config tag="extend" parents="mod" module="BugConfig" class="ExtendHandler"/>
  14. <config tag="options" parents="mod" module="BugOptions" class="OptionsHandler">
  15. <config tag="section" class="SectionHandler">
  16. <config tag="option" parents="bug mod options" class="OptionHandler"/>
  17. <config tag="list" parents="bug mod options" class="ListOptionHandler">
  18. <config tag="choice" class = "ListChoiceHandler"/>
  19. </config>
  20. <config tag="change" parents="- option list" class="ChangeHandler"/>
  21. <config tag="accessor" parents="options" class="AccessorHandler"/>
  22. </config>
  23. </config>
  24. <config tag="link" parents="mod options section" module="BugOptions" class="LinkedOptionHandler"/>
  25. <config tag="events" parents="mod" module="BugConfig" class="EventsHandler"/>
  26. <config tag="event" parents="mod" module="BugConfig" class="EventHandler"/>
  27. <config tag="symbol" parents="mod" module="FontUtil" class="SymbolHandler"/>
  28. <config tag="shortcut" parents="mod" module="InputUtil" class="ShortcutHandler"/>
  29. <config tag="widget" parents="mod" module="WidgetUtil" class="WidgetHandler"/>
  30. <config tag="screen" parents="mod" module="BugOptionsScreen" class="ScreenHandler">
  31. <config tag="tab" class="TabHandler"/>
  32. </config>
  33. <config tag="gameutils" parents="mod" module="BugGameUtils" class="GameUtilsHandler">
  34. <config tag="callback" class="CallbackHandler"/>
  35. </config>
  36. </config>
  37. </bug>