Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

32 rader
521 B

  1. define([
  2. 'extend',
  3. 'security/connections',
  4. 'misc/helpers',
  5. 'items/lootRoller',
  6. 'world/atlas',
  7. 'leaderboard/leaderboard',
  8. 'config/clientConfig'
  9. ], function (
  10. extend,
  11. cons,
  12. helpers,
  13. lootRoller,
  14. atlas,
  15. leaderboard,
  16. clientConfig
  17. ) {
  18. return {
  19. init: function () {
  20. global.extend = extend;
  21. global.cons = cons;
  22. global._ = helpers;
  23. global.lootRoller = lootRoller;
  24. global.atlas = atlas;
  25. global.leaderboard = leaderboard;
  26. global.clientConfig = clientConfig;
  27. clientConfig.init();
  28. }
  29. };
  30. });