Skip to content
This repository has been archived by the owner on Jul 21, 2023. It is now read-only.

Notavone/iut-memory

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Memory

My take on the classics Memory game

The goal is to return pairs of images, those that are the same stays, and those that aren't hides again

How to compile and run (Linux)

  1. Install maven
sudo apt-get install maven
  1. Navigate to the repository
cd PATH/TO/REPOSITORY
  1. Clean and Compile
mvn clean
mvn install
  1. Navigate to target folder
cd target
  1. Add the "execute" permission to Memory-X.x.jar (replace X-x by the version)
chmod a+x Memory-X.x.jar
  1. Run the .jar (replace X-x by the version)
java -jar Memory-X.x.jar

(You can also double-click on the .jar once it has the "execute" permission)