We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3cb740 commit 65d6bc0Copy full SHA for 65d6bc0
examples/java/DonutIO/Game.java
@@ -1,6 +1,7 @@
1
package DonutIO;
2
3
import org.openpatch.scratch.Window;
4
+import org.openpatch.scratch.extensions.text.Text;
5
6
public class Game extends Window {
7
@@ -13,6 +14,7 @@ public Game() {
13
14
}
15
16
public static void main(String[] args) {
17
+ Text.FONT_SIZES = new int[] { 32, 48 };
18
new Game();
19
20
examples/java/Shakespeare/Shakespeare.java
@@ -67,6 +67,7 @@ public void run() {
67
68
69
70
+ Text.FONT_SIZES = new int[] { 14, 20 };
71
new Shakespeare();
72
73
0 commit comments