Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/notavone/iut-memory
🎮 My take on the classic Memory game
https://github.com/notavone/iut-memory
fun game java javaswing memory-game swing
Last synced: 17 days ago
JSON representation
🎮 My take on the classic Memory game
- Host: GitHub
- URL: https://github.com/notavone/iut-memory
- Owner: Notavone
- Archived: true
- Created: 2021-05-11T21:01:38.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-05-15T09:09:52.000Z (over 3 years ago)
- Last Synced: 2024-12-17T13:09:29.202Z (17 days ago)
- Topics: fun, game, java, javaswing, memory-game, swing
- Language: Java
- Homepage:
- Size: 966 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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
```shell
sudo apt-get install maven
```2. Navigate to the repository
```shell
cd PATH/TO/REPOSITORY
```3. Clean and Compile
```shell
mvn clean
mvn install
```4. Navigate to target folder
```shell
cd target
```5. Add the "execute" permission to Memory-X.x.jar (replace X-x by the version)
```shell
chmod a+x Memory-X.x.jar
```6. Run the .jar (replace X-x by the version)
```shell
java -jar Memory-X.x.jar
```(You can also double-click on the .jar once it has the "execute" permission)