選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 

31 行
1.1 KiB

  1. package utils;
  2. /**
  3. * This is a utility class that just has short-cuts to the location of various
  4. * config files.
  5. *
  6. * @author Dr. Richard McCreadie
  7. *
  8. */
  9. public class StaticConfFiles {
  10. // Board Pieces
  11. public final static String tileConf = "conf/gameconfs/tile.json";
  12. public final static String gridConf = "conf/gameconfs/grid.json";
  13. // Avatars
  14. public final static String humanAvatar = "conf/gameconfs/avatars/avatar1.json";
  15. public final static String aiAvatar = "conf/gameconfs/avatars/avatar2.json";
  16. // Tokens
  17. public final static String wraithling = "conf/gameconfs/units/wraithling.json";
  18. // Effects
  19. public final static String f1_inmolation = "conf/gameconfs/effects/f1_inmolation.json";
  20. public final static String f1_buff = "conf/gameconfs/effects/f1_buff.json";
  21. public final static String f1_martyrdom = "conf/gameconfs/effects/f1_martyrdom.json";
  22. public final static String f1_projectiles = "conf/gameconfs/effects/f1_projectiles.json";
  23. public final static String f1_summon = "conf/gameconfs/effects/f1_summon.json";
  24. }