The project aim to recreate the well-known game Dungeons & Dragons using Java. It's a school project where the goal is to learn the langage.
- Clone the Repo
- Go to Project Structure
- Select a JDK or download the latest version from the Menu.
- Go to src/Main and press CTRL + F5 or Run it from the button at the left bottom of the IDE.
Be sure to have a JDK or download/install it from : https://www.oracle.com/fr/java/technologies/downloads/
- Clone the Repository:
Open your terminal and clone the repository using the following command:
git clone https://github.com/AlexCurtaud/DungeonsAndDragons_Java.git
- Navigate to the Project Directory:
Change your directory to the project folder:cd DungeonsAndDragons_Java - Build the Project:
Compile the files from .java to .classCreate the MANIFEST.MF and write Main-class: Mainjavac *.javaCreate the .jar filenano MANIFEST.MF // Write Main:class Main and press Enter // Save and Close
jar -cvmf MANIFEST.MF Prog.jar *.class - Run the Application:
Run the prog.jar file
java -jar prog.jar
[Currently working on it]