-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.java
19 lines (17 loc) · 1.63 KB
/
Main.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// ░█████╗░██╗░░░░░███████╗██╗░░██╗ ████████╗░█████╗░███╗░░██╗██╗
// ██╔══██╗██║░░░░░██╔════╝╚██╗██╔╝ ╚══██╔══╝██╔══██╗████╗░██║██║
// ███████║██║░░░░░█████╗░░░╚███╔╝░ ░░░██║░░░███████║██╔██╗██║██║
// ██╔══██║██║░░░░░██╔══╝░░░██╔██╗░ ░░░██║░░░██╔══██║██║╚████║╚═╝
// ██║░░██║███████╗███████╗██╔╝╚██╗ ░░░██║░░░██║░░██║██║░╚███║██╗
// ╚═╝░░╚═╝╚══════╝╚══════╝╚═╝░░╚═╝ ░░░╚═╝░░░╚═╝░░╚═╝╚═╝░░╚══╝╚═╝
// some inspiration taken from:
// phamngocthachlt6c, https://www.youtube.com/watch?v=_U0Io6Utf98, https://github.com/phamngocthachlt6c/Tutorial_Tetris_Java
// zetcode, https://zetcode.com/javagames/tetris/
// MrM Programming, https://www.youtube.com/watch?v=dgVh6S8X25k
// Jeffery Xiao, https://github.com/jeffrey-xiao/tetris-multiplayer
// meeees4, https://www.youtube.com/watch?v=qPRWYyl41oQ
public class Main {
public static void main(String[] args) {
Title.runTitle();
}
}