-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMain.java
More file actions
37 lines (29 loc) · 924 Bytes
/
Main.java
File metadata and controls
37 lines (29 loc) · 924 Bytes
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
public class Main {
public static void main(String[] args) {
//TODO
// 1: When i save over another save it will double the file extension
// 2: Clean the code
// 3: Create a better installer
// 4: Create a better launcher
CpuInfo cpuInfo = new CpuInfo();
//Anti aliasing for the font
System.setProperty("awt.useSystemAAFontSettings","on");
//Run the ui thread
Thread runUi = new Thread(new Runnable() {
@Override
public void run() {
Interface ui = new Interface();
ui.createUi();
}
});
runUi.start();
/* Thread runCpuUi = new Thread(new Runnable() {
@Override
public void run() {
CpuUi cpuUi = new CpuUi();
cpuUi.createUi();
}
});
runCpuUi.start();*/
}
}