comparison flappyufo/README.md @ 15:f61684ae8245

READEM FIX
author prymula <prymula76@outlook.com>
date Sat, 10 Feb 2024 21:05:36 +0100
parents
children
comparison
equal deleted inserted replaced
14:49dd434149cd 15:f61684ae8245
1 # flappyufo
2
3 # Start
4
5 An implementation of the Flappy Bird game known from Android, guide the airship between the pipes.
6
7 To download the latest version, type in terminal:
8
9 git clone https://gitlab.com/pietraszczyk/flappyufo.git
10
11 # You still need to install dependencies to run:
12
13
14 ## Fedora:
15
16 sudo dnf install java-11-openjdk ant
17
18
19 ## OpenSUSE:
20
21 sudo zypper in java-11-openjdk, ant
22
23
24 ## Ubuntu:
25
26 sudo apt install default-jdk default-jdk-headless ant
27
28
29 ## Arch:
30
31 pacman -S jdk-openjdk ant
32
33
34
35 # Build
36
37 ant clean
38
39 ant compile
40
41 ant jar
42
43
44
45 # Launching
46
47 ant run
48
49
50
51