v2 / examples / gg / minimal.v
17 lines · 16 sloc · 320 bytes · c51d30bf5309653c6b573ec815268e69a78ea8cc
Raw
1import gg
2
3gg.start(
4 window_title: 'Hello'
5 bg_color: gg.Color{240, 240, 128, 255}
6 width: 320
7 height: 240
8 frame_fn: fn (ctx &gg.Context) {
9 ctx.begin()
10 ctx.draw_text(40, 100, 'GG frame: ${ctx.frame:06}',
11 size: 30
12 color: gg.Color{50, 50, 255, 255}
13 )
14 ctx.show_fps()
15 ctx.end()
16 }
17)
18