File tree Expand file tree Collapse file tree 4 files changed +8
-7
lines changed
html/src/main/java/com/github/tommyettinger/gwt
lwjgl3/src/main/java/com/github/tommyettinger/lwjgl3
teavm/src/main/java/com/github/tommyettinger/teavm Expand file tree Collapse file tree 4 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ org.gradle.daemon=false
2
2
org.gradle.jvmargs =-Xms512M -Xmx1G
3
3
org.gradle.configureondemand =false
4
4
android.enableR8.fullMode =false
5
- textratypistVersion =72f99b3185
5
+ textratypistVersion =a07dbe6af2
6
+ # textratypistVersion=72f99b3185
6
7
# textratypistVersion=1.1.1-SNAPSHOT
7
8
regExodusVersion =0.1.16
8
9
gwtFrameworkVersion =2.11.0
Original file line number Diff line number Diff line change @@ -25,8 +25,8 @@ public GwtApplicationConfiguration getConfig () {
25
25
26
26
@ Override
27
27
public ApplicationListener createApplicationListener () {
28
- // return new Main();
29
- return new TypingUITest ();
28
+ return new Main ();
29
+ // return new TypingUITest();
30
30
// return new StandardUITest();
31
31
}
32
32
}
Original file line number Diff line number Diff line change @@ -15,8 +15,8 @@ public static void main(String[] args) {
15
15
}
16
16
17
17
private static Lwjgl3Application createApplication () {
18
- // return new Lwjgl3Application(new Main(), getDefaultConfiguration());
19
- return new Lwjgl3Application (new TypingUITest (), getDefaultConfiguration ());
18
+ return new Lwjgl3Application (new Main (), getDefaultConfiguration ());
19
+ // return new Lwjgl3Application(new TypingUITest(), getDefaultConfiguration());
20
20
// return new Lwjgl3Application(new StandardUITest(), getDefaultConfiguration());
21
21
}
22
22
Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ public static void main(String[] args) {
17
17
config .height = 640 ;
18
18
config .antialiasing = true ;
19
19
// config.useGL30 = true;
20
+ new TeaApplication (new Main (), config );
21
+ // new TeaApplication(new TypingUITest(), config);
20
22
// new TeaApplication(new StandardUITest(), config);
21
- new TeaApplication (new TypingUITest (), config );
22
- // new TeaApplication(new Main(), config);
23
23
}
24
24
}
You can’t perform that action at this time.
0 commit comments