run.py 395B

123456789101112131415161718
  1. from os import getcwd
  2. from sys import path as ppath
  3. ppath.insert(1,getcwd()+'/modules') # TODO: win32 compatibilite (python path)
  4. """
  5. TODO:
  6. * Objects "dur" (terre); ne pas les avoir dans les objet a calculer sans cesse (INERTE)
  7. * SlightyTurn
  8. """
  9. from synergine.core.Core import Core
  10. from config import config
  11. if __name__ == '__main__':
  12. Core.start_core(config, modules_path='modules')