https://github.com/thaliaarchi/text-rpg
A text based role playing game made in Java with a randomly generated world.
https://github.com/thaliaarchi/text-rpg
eclipse java text-rpg
Last synced: 2 months ago
JSON representation
A text based role playing game made in Java with a randomly generated world.
- Host: GitHub
- URL: https://github.com/thaliaarchi/text-rpg
- Owner: thaliaarchi
- Created: 2015-05-08T17:26:15.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-06-04T18:42:10.000Z (almost 10 years ago)
- Last Synced: 2025-01-25T10:08:36.639Z (4 months ago)
- Topics: eclipse, java, text-rpg
- Language: Java
- Homepage:
- Size: 340 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Text RPG
Text RPG is a text based role playing game made in Java.
It has a randomly generated world that extends infinitely.
It uses text art to display the map instead of using images.I document all of the methods that I write (except for test cases) using javadoc comments.
In Eclipse and other IDE's, when you hover over a method with javadocs,
it will display that information in a tooltip.I also document my progress in [commits](https://github.com/TepigMC/Text-RPG/commits/master) on GitHub to be able to safely roll back to a previous version of the code.
## Contributing
If you want to contribute to the project, here is how you would get started.1. Install [git](http://git-scm.com/downloads)
2. If you don't like using the command line, then you can install one of these user friendly tools
- [GitHub for Windows](https://windows.github.com/)
- [GitHub for Mac](https://mac.github.com/)
- [Atlassian SourceTree](https://www.sourcetreeapp.com/)
2. [Fork the repository](https://guides.github.com/activities/forking/)
3. Create a clone of the forked repository
3. Import the project into Eclipse or another IDE
- For [Eclipse](https://www.eclipse.org/downloads/packages/eclipse-ide-java-developers/lunasr2)
1. Create a new java project (`File > New > Java Project`)
2. Browse to the location of your fork
3. Click 'Finish'
4. Modify the project however you want
5. To merge your changes back with the main project
1. Push the changes
2. Commit the changes on your fork
3. Submit a pull request