diff --git a/Contributing.md b/Contributing.md deleted file mode 100644 index 866727a..0000000 --- a/Contributing.md +++ /dev/null @@ -1,22 +0,0 @@ -# Rules: -1. [Import this formatting preset](https://github.com/halotroop/Ginger3D/blob/liteCraft/Caroline's%20Java%20Formatting%20Preference.xml) to your IDE, and set it to default for any project related to _halotroop_. -2. Always use symmetrical curly braces! - - If there is only one line of code between them, put them on the same line like this: `{ code(); }` - - If there are multiple lines between them put them on separate lines like this: - -```java -{ - codeHere(); - moreCodeHere(); -} -``` - -3. Change your "Organize Imports" preferences to use `.*` imports after only 2 imports are used, (instead of the ridiculous default 99). -![Organize Imports preferences on Eclipse](https://i.gyazo.com/15687094dc310627634be74577b1f88b.png) -# Guidelines: -1. Avoid adding large bits of code to the game! - - If there's something big you want to add, look for a library first! - - If you must write one feature that's more than 1000 lines, and it doesn't depend on parts of the main game code, make your own library and import it through Maven. - - If you want to add a smaller feature, less than 1000 lines, and you already have GPLv3 compatible code for it from another project, you may add it under its original package name to this project. - - Anything that doesn't fit the above criteria can just be added to the Litecraft package. - - If you're not sure what to do after reading these, ask @halotroop2288 how to proceed. \ No newline at end of file