.gitignore 393 B

12345678910111213141516171819202122232425262728293031
  1. # Compiled nonsense that does not belong in *source* control
  2. /build
  3. /bin
  4. /.gradle
  5. /minecraft
  6. /out
  7. /run
  8. /classes
  9. /old
  10. # IDE nonsense that could go in source control but really shouldn't
  11. .classpath
  12. .project
  13. .metadata
  14. .settings
  15. *.launch
  16. *.iml
  17. .idea
  18. *.ipr
  19. *.iws
  20. # Sekrit files
  21. private.properties
  22. # Files from bad operating systems :^)
  23. Thumbs.db
  24. .DS_Store
  25. secret\.properties
  26. local\.properties