.gitignore 363 B

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