.gitignore 379 B

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