-
Notifications
You must be signed in to change notification settings - Fork 0
/
main_file.java
60 lines (47 loc) · 1.15 KB
/
main_file.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import java.lang.System;
/**
* Gold Miner Catch Game - java;
* Made by Cflowe, Uname: Cflowe
* (@name) Please do not edit or delete this description
*
* Published: 2022 / 01 / 31
*
* CHANNEL AND CONTACT
* --- --- --- --- ---
* Youtube: https://www.youtube.com/channel/UCzD7B_hlD90RUaCyHZzBmWg
*
* GMAIL: [email protected]
* --- --- --- --- ---
*
* LETTER FOR PLAYERS
* --- --- --- --- ---
* Hi, I’m Cflowe(@name) and this game is made by me.
*
* I’m doing programming with java and python.
*
* I was doing java terminal & text before. This is one of my very early java GUI game.
*
* Hope you like it.
*
* subscribe me at Youtube:
* https://www.youtube.com/channel/UCzD7B_hlD90RUaCyHZzBmWg
*
* Thanks for playing!
* Cflowe (@name)
* 2022 / 01 / 31
* --- --- --- --- ---
* SOURCES:
* Images from:
* https://www.google.com/imghp?hl=en
* https://minecraft.fandom.com/wiki/Minecraft_Wiki
* The rest all edited by me.
*
*/
//
public class main_file {
public static void main(String[] args){
System.out.println("game launch");
window win = new window();
win.launch();
}
}