1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

os: add font module, move from gg (#13144)

This commit is contained in:
Larpon
2022-01-13 11:16:18 +01:00
committed by GitHub
parent 7882915409
commit 7fbd856bf8
7 changed files with 141 additions and 124 deletions

View File

@@ -36,7 +36,6 @@ fn main() {
bg_color: bg_color
frame_fn: frame
init_fn: init
font_path: gg.system_font_path()
)
app.gg.run()
}

View File

@@ -42,7 +42,6 @@ fn main() {
create_window: true
frame_fn: frame
bg_color: gx.white
font_path: gg.system_font_path()
)
// window.onkeydown(key_down)
println('Starting the game loop...')

View File

@@ -29,7 +29,6 @@ fn main() {
frame_fn: frame
resizable: true
bg_color: gx.white
font_path: gg.system_font_path()
)
context.gg.run()
}